结构体数组对应 java

struct tr
{
 char w;
 char opr1;
 char opr2;
 int temp;
}trip[100];

这个结构体在java应该怎么写

还有赋值trip[0].w=ch;  ch是传过来的char

我对应在java里写的是
class tr{
 char w;
 char opr1;
 char opr2;
 int temp; 
}
tr[] trip=new tr[4];
trip[0].w='c';

System.out.println(trip[0].w);
结果MyEclipse没反应没有输出......





定义完 class 以后要这样:

tr[] trip = new tr[4];
for (int i=0; i 
  

你可能感兴趣的:(java)