0
なぜこのコードの出力が0.0の10行だけで、どのように変更するのですか?あなたがres[idx]
配列を初期化しているところ起動中スレッドを拡張することが正しく動作しないJavaテストでの簡単な演習
public class Staszeskitest extends Thread
{
static double res[] = new double[10];
int idx;
Staszeskitest(int idx)
{
this.idx = idx;
}
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
for(int i = 0; i < 10; i++)
{
new Staszeskitest(i).start();
System.out.println(res[i]);
}
}
public void run()
{
res[idx] = 1;
for(int i = 0; i < 100; i++)
{
res[idx] -= (.01 * idx) * res[idx];
}
}
}
テストに合格すれば何が勝つのですか? –
それは私のためではなく、それは追放されようとしている私の友人のためです – foxale