标签:
public class test
{
public static void main(String [] args)
{
Data [] tempValue = new Data[3];
for(int temp=0;temp<tempValue.length;temp++)
{
tempValue[temp] = new Data(); //这句话是关键
tempValue[temp].real = 1;
tempValue[temp].vir = 1;
}
System.out.println(tempValue[0].real);
}
}
class Data {
double real; // 表示实部
double vir; // 表示虚部
}
标签:
原文地址:http://www.cnblogs.com/jhsx/p/4239954.html