说实话对于纯小白,就是完全没有接触过编程的人来说,这个老师讲得不大好。建议看不懂的同学要多看几遍,一句一句听,这样才可能看懂。
2017-12-22
helloworld hello=new helloworld();
inner i=hello.new inner();
i.show();
inner i=hello.new inner();
i.show();
2017-12-20
public static void main(String[] args) {
// 创建对象
HelloWorld hello = new HelloWorld();
// 调用对象的show方法
hello.show();
那位大佬能告诉我一下创建这个类方法的意义
// 创建对象
HelloWorld hello = new HelloWorld();
// 调用对象的show方法
hello.show();
那位大佬能告诉我一下创建这个类方法的意义
2017-12-20