第一个程序HelloWorld及常见问题解决和练习
public class hello world{ public static void main(String[] args){ System.out.println(); } }
注意事项:
- 源文件必须以.Java结尾
- 一个源文件中可以有多个class声明的类,但是只有一个public class类
- 类中必须有主方法
public static void main(String[] args){ }
- main是执行这个源文件的入口
- 源文件中只有一个声明public类,且名与源文件名一致
文档注释(可解析,生成到当前目录文件夹下):文档注释是生成类似于说明书作用的效果
格式:/**...*/
作业
答案:
代码:
package com.company; public class Main { public static void main(String[] args) { System.out.println("HelloWorld"); System.out.println("姓名:T&K"+'\n'+"性别:男"+'\n'+"籍贯:新疆"+'\n'+"住址:吃饭学院"); System.out.println('\t'+"*"+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+"*"+'\t' +'\n'+"*"+'\t'+'\t'+"*"+'\t'+'\t'+"I Love You"+'\t'+'\t'+"*"+"\t"+'\t'+"*" +'\n'+'\t'+"*"+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+"*"+'\t' +'\n'+'\t'+'\t'+"*"+'\t'+'\t'+'\t'+'\t'+'\t'+'\t'+"*"+'\t'+'\t' +'\n'+'\t'+'\t'+'\t'+"*"+'\t'+'\t'+'\t'+'\t'+"*"+'\t'+'\t'+'\t' +'\n'+'\t'+'\t'+'\t'+'\t'+"*"+'\t'+'\t'+"*"+'\t'+'\t'+'\t'+'\t' +'\n'+'\t'+'\t'+'\t'+'\t'+'\t'+"*"+'\t'+'\t'+'\t'+'\t'+'\t'); // write your code here } }
截图: