JavaBug(1)——Cannot make a static reference to the non-static method Judge(int) from the type A

package _4;
import java.util.LinkedList;
import java.util.Scanner;
public class A {
public boolean Judge(int o) {
if(o!=2&&o!=4&&o!=8&&o!=16) {
System.out.println("error");
return false;
}
else
return true;
}
public void Binary(int i) {
LinkedList a = new LinkedList();
while(i!=0) {
a.add(i%2);
i=(i-i%2)/2;
}
System.out.println("转化为二进制=")
for(int j=0;j

JavaBug(1)——Cannot make a static reference to the non-static method Judge(int) from the type A最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/7579.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>
发表评论

共有 0 条评论

沙发空余