A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class Zi
{
Zi()
{
super()
int num=10;
System.out.println("Zi cons run.."+num);
return;
}
int num=8;
void show()
{
System.out.println("Zi run..."+num);
}

public class Demo {
public static void main(String[] args)
{
Zi z=new Zi();
z.show();
}
}

2 个回复

倒序浏览
还有为什么把构造函数中的int num=10;直接写成num=10编译器也不报错呢
回复 使用道具 举报
两个num不是同一个num、、、、
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马