D:\JAVA\huatu\huatutan.java:24: cannot find symbol
symbol : constructor ling()
location: class ling
new ling();//打开ling窗体
这肯定是错啊,你只定义了带有参数的构造函数,而没有定义默认的构造函数.你 ^
D:\JAVA\huatu\huatutan.java:64: local variable z is accessed from within inner class; needs to be declared final
z.jtx.setText(""+y);//改变zhuFrame中的jtx文本区内容
所有被内部类访问的成员必须是final的,或者是类成员,否则就错
^
Note: D:\JAVA\huatu\huatutan.java uses or overrides a deprecated API.
提示你用了过时的API
Note: Recompile with -Xlint:deprecation for details.
2 errors
symbol : constructor ling()
location: class ling
new ling();//打开ling窗体
这肯定是错啊,你只定义了带有参数的构造函数,而没有定义默认的构造函数.你 ^
D:\JAVA\huatu\huatutan.java:64: local variable z is accessed from within inner class; needs to be declared final
z.jtx.setText(""+y);//改变zhuFrame中的jtx文本区内容
所有被内部类访问的成员必须是final的,或者是类成员,否则就错
^
Note: D:\JAVA\huatu\huatutan.java uses or overrides a deprecated API.
提示你用了过时的API
Note: Recompile with -Xlint:deprecation for details.
2 errors
Process completed.
其实很多时候看到这些提示自己也能看出为什么错的,
因为这些原因已经很详细了,它会指明你哪一句错了.
以后应该学会自己看到编译结果来排错
可惜不是你,陪我到最后