日期:2014-05-20 浏览次数:20858 次
class TTFrame {
public TTFrame(){
Frame f = new Frame();
f.setBackground(Color.BLACK);
}
}class TTFrame {
Frame f = new Frame();
f.setBackground(Color.BLACK);
}class TTFrame {
//普通成员变量
int i = 0;
void check(){
i = 6;
}
}class TTFrame {
//普通成员变量
int i = 0;
i = 6;
}class TTFrame {
int i = 0;
void check(){
i = 6;
int jj = 11;
jj = jj++;
jj = jj+i;
}
}
import java.awt.*;
class TTFrame {
//普通成员变量
Frame f = new Frame();
//普通成员方法
void pirntLuch(){
int i = 0;
}
}
public class TestFrame{
public static void main(String[] args){
TTFrame tt = new TTFrame();
tt.f.setBackground(Color.BLACK);
}
}