3
私は、カウントに基づいてループ内に一定量の変数を宣言したいとしましょう。複数の変数をカウントに基づいてループ内で宣言することは可能ですか?
private static void declaration(int amount)
{
for (int i = 0; i <= amount; i++)
{
/*Code that declares variables.
*
*When i == 0, it will declare int num0 with a value of 0.
*When i == 1, it will declare int num1 with a value of 0, etc.
*/
}
}
これはJava内部で可能ですか?
はい。配列を使用する場合。 –
おそらく、配列やリストなど、いくつかのコレクションデータ型を使うべきでしょう。 Javaでは、名前のような属性を動的に作成することはできません。 Python。 – schwobaseggl