java源文件组成部分
class HelloWorld{ public static void main(String[ ] args) { System.out.print("HelloWorld!!!") ; } }
一、类也叫外部结构
语法:
[修饰符] class 类名{ }
例:
class HelloWorld{ }
PS: class是声明类
二、main方法,也叫做主方法或程序的入口
例:
class helloworld { public static void main (String[ ] args) { } }
说明:
##public static void main (String[] args){ ...; } 为程序的入口
注意:
1、编写在类中
2、在一个类中的main方法是可有可无的
3、如果编写main方法,则在一个类中最多有一个
三、代码
1、输出语句
System.out.print (编写大小写字母,汉字,数字,以及特殊符号,但是输出后不换行)
System.out.println (输出内容同上,但是输出后换行)
class HelloWorld{ public static void main(String[ ] args) { System.out.println("HelloWorld!!!") ; System.out.print("hello") ; System.out.println("HelloWorld") ; System.out.print("1233123123123123") ; } }
输出结果为:
HelloWorld!!! helloHelloWorld 1233123123123123
注意:
1、将代码编写在入口中
2、可以在入口中编写n条语句,语句就是以" ; "英文分号作为结尾
PS:
class HelloWorld{ public static void main(String[ ] args) { System.out.println(1 + 2 + 3) ; 输出结果为6 System.out.println("1 + 2 + 3"); 输出结果为 1 + 2 + 3 } }
注意:双引号中的内容是原样输出的
以上就是java源文件由什么组成?的详细内容,更多请关注易知道|edz.cc其它相关文章!