内部类类体中不可以声明类变量和类方法吗

public class dsa{      

public static void main(String args[]){   

 System.out.println("anotherX.x = " + dsaa.x());  

static class dsaa {

dsaa(){

}

static int x;

static int x() {          

return x; }  

static void setX(int newX) {      

x = newX; } 

}

}


慕粉3136803
浏览 1979回答 1
1回答

qq_青枣工作室_0

可以啊。你的代码没问题,可以运行啊。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java