//文件1
package test1;
public class a{
int num=10;
public void write(){
int num=90;
System.out.print("num"+num);//这个num是局部的num和方法外面的num没有关系
}
}
//文件二
package test1;
import java.util.*;
public class Main {
public static void main(String[] args){
a b=new a();
b.write();调用了方法write但是后面的num不变
System.out.println(b.num);
}//end
}
相关文章
- 07-18QT图像质量双盲测试小软件的编写学习(2)
- 07-18Event事件的兼容性(转)
- 07-18matplotlib.pyplot画图包的使用简介 (3) [折线图]
- 07-18QT提供的字符串加密
- 07-18DllMain加载其他DLL造成的死锁问题及其解决办法
- 07-18matplotlib.pyplot plt.hist() 绘制概率图时,概率和不为1的问题(已解决)
- 07-18QString.toUtf8().data()的问题 & char *转换到QByteArray注意
- 07-18用matplotlib.pyplot画简单的折线图,直方图,散点图
- 07-18matplotlib.pyplot的全函数解释 API
- 07-18【Python】【Web.py】详细解读Python的web.py框架下的application.py模块