我正在写一个代码,我在其中打印一个声明" Hello World"但发生错误命名无法找到符号。我努力删除此错误但失败了。
public class Input{
System.out.println("Hello World");}
This is the statement and the error
请有人帮我解决这个错误并告诉我为什么会出现这个错误,所以我将来不会重复这个错误。
答案 0 :(得分:1)
使用此:
public class Input {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
您无法在课程范围内打印。您需要更多地了解函数和类之间的区别。
答案 1 :(得分:0)
“类”有点像名词。这是人,地点或事物。
public class myThing {
//This is a comment
//put stuff that describes the thing in the curly braces
}
为了让事情做点什么,你必须把它放在方法
中public void myMethod(){
//code in here gets run when myMethod runs
}
方法必须在课堂上。一种方法通常可以是“事情可以做的事情”
public class myThing {
public void myThingCanDoThis(){
//does this stuff only when called from somewhere else
}
}
主要方法是一种特殊类型的方法,总是如下所示:
public static void main(String[] args) {
//This special method gets run automatically when your program runs
}
你的世界应该定义一个东西。它应该具有“main”的方法或“动词”。
public class myThing {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
现在假设你的所有java代码必须进入main方法。学习基础知识,然后当你了解更多时,开始关注诸如“公共”,“静态”,“阶级”,“无效”等事情。它将在时间上有意义