Javaを始めたばかりです。このプログラムをコンパイルしようとしています
class poop{
public static void main(String[] args){
System.out.println(Integer.parseInt("1"));
}
}
しかし、私はこのエラーが発生します
poop.java:3: error: cannot find symbol
System.out.println(Integer.parseInt("1"));
^
symbol: method parseInt(String)
location: class Integer
./Integer.java:5: error: cannot find symbol
Int a=5;
^
symbol: class Int
location: class Integer
2 errors
調子はどう?
LubuntuでJDK 7を使用しています