public class Hello{
public static void main(String args[]){
System.out.println("Hello World!!!") ;
}
}; |
public class 类名称{
public static void main(String args[]){
// 在此处写代码
}
}; |
public class Hello{
public static void main(String args[]){
System.out.println("Hello World!!!") ;
}
};
class A
{
};
class B
{
}; |
public class Demo01{
public static void main(String args[]){
// 定义一个整型变量
// 变量名称为i,如果是变量的化,则里面的内容可以进行修改
int i = 0 ;
i = 10 ;
System.out.println(i) ;
}
}; |
public class Demo01{
public static void main(String args[]){
// 定义一个整型变量
// 变量名称为i,如果是变量的化,则里面的内容可以进行修改
int i = 0 ;
// 在程序中变量名称是不能重复的
int j = 0 ;
i = 10 ;
j = 20 ;
System.out.println(i + j) ;
}
}; |
public class Demo02{
public static void main(String args[]){
boolean b = false ;
b = true ;
// 代码是错
b = 1 ;
System.out.println(b) ;
}
}; |
public class Demo03{
public static void main(String args[]){
// 定义了一个字符
char c = 'A' ;
System.out.println(c) ;
}
}; |
public class Demo03{
public static void main(String args[]){
// 定义了一个字符
char c = 'A' ;
char x = 'x' ;
System.out.println(c+x) ;
}
}; |
public class Demo04{
public static void main(String args[]){
// 定义了一个字符
char c = 'A' ;
// 将一个字符型的数据赋值给整型
// 此处可以如此转换,是因为i能装的数据大小比char大
int i = c ;
i = i + 32 ;
// 如果将int变为char,此时就必须进行强制的转换
System.out.println((char)i) ;
}
}; |
public class Demo05{
public static void main(String args[]){
String str = "abcdef" ;
// 字符串上也可以使用”+“,表示两个字符串的连接
String s = "ghijkl" ;
System.out.println(str + s) ;
}
}; |
public class Demo06{
public static void main(String args[]){
int i = 10 ;
int j = 20 ;
// 只要是碰到了字符串中使用”+“,则所有的类型都自动变为字符串
System.out.println(i+" + "+j+" = "+(i + j)) ;
}
}; |
public class Demo07{
public static void main(String args[]){
float f =
System.out.println(f) ;
}
}; |
public class Demo08{
public static void main(String args[]){
byte b = (byte)127 ;
b = (byte)(b + (byte)1) ;
System.out.println(b) ;
}
}; |