日期:2014-05-20  浏览次数:20740 次

The static field DBmysql.getline should be accessed in a static way
MyEclipse里的警告,是什么意思?
程序:
lis2 = (String)this.reupline(this.getline);
getline有警告

------解决方案--------------------
getline是个静态字段,应该以静态方式引用

把this.getline换成DBmysql.getline就好了,或者直接写getline