public static void demo(){
// 输出一个字符串
System.out.println("Hello World!");
}
public static final void main(String[] args){
// 在主函数中调用
demo();
}