标签:param 指示 out 单词 组成 stat hello 多个 编码
public class FirstSample
{
public static void main(String[] args)
{
System.out.println("We will not use 'Hello, World!"') ;
}
}
Java 区分大小写
public 称为访问修饰符(access modifier )
类名是以大写字母开头的名词。 如果名字由多个单词组成,每个单词的第一个字母都应该大写
源代码的文件名必须与公共类的名字相同,并用.java 作为扩展名
在类的源文件中必须包含一个 main方法 main 方法必须声明为 public
用大括号划分程序的各个部分(通常称为块)。Java 中任何方法的代码都用 "{" 开始,用 "}" 结束。
? 函数调用 object.method(parameters)
// 注释单行
/**
* 注释段落
*/
利用关键字 final 指示常量
public class Constants
{
public static void main(String[] args)
{
final double CM_PER_INCH = 2.54;
double paperWidth = 8.5;
double paperHeight = 11;
System.out.println("Paper size in centimeters: "
+ paperWidth * CM_PER_INCH + " by " + paperHeight * CM_PER_INCH);
}
}
希望某个常量可以在 一个类中的多个方法中使用 ,通常将这些常量称为类常量 。可以使用关键字 static final 设置一个类常量
public class Constants2
{
public static final double CM_PER_INCH = 2.54;
public static void main(String[] args)
{
double paperWidth = 8.5;
double paperHeight = 11;
System.out.println("Paper size in centimeters: "
+ paperWidth * CM_PER_INCH + " by " + paperHeight * CM_PER_INCH);
}
}
一个常量被声明为 public, 那么其他类的方法也可以使用这个常量。Constants2.CM_PER-INCH 就是这样一个常量
public class MathMethodDemo {
public static void main(String[] args){
double x = 4;
int a = 2;
double y = Math.sqrt(x);
double c = Math.pow(x,a);
System.out.println(y+c);
}
}
double x * 9.997;
int nx = (int) x;
double x = 9.997;
int nx = (int) Math.round(x);
标签:param 指示 out 单词 组成 stat hello 多个 编码
原文地址:https://www.cnblogs.com/jyp-blogs/p/11663026.html