Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以前のメッセージを消去せずに、同じテキスト領域に複数のメッセージを表示したい。
double betAmount=100; messages.setText("you are betting,$"+betAmount+"\n"); messages.setText("you stand\n"); messages.setText("you hit\n");
あなたは賭けています、$100.0 あなたは立っています あなたはヒットしました
messages.setText("you are betting,$"+betAmount+"\n"); messages.append("you stand\n"); messages.append("you hit\n");