标签:必须 规范 测试 span tde hello style student public
一.
Java代码标识符问题,首字母大写,每个单词首字母大写,为了有更高的阅读性,同时也让自己的代码提升了一个档次
例如取名标识符为测试,就写Demo,学生测试类,就为StudentDemo,牢记!!
二.
写java代码时,不,写任何语言的代码时,都要有自己的规范与风格,不能至让自己看懂,要有一定的可阅读性,也必须要有注释,注释是不能少的
例如开始先写多行注释
/*
确定需求:在控制台打印 “hello ,world”
实现思想:写一个类名,写主函数,输出语句
代码实现步骤:1.定义类名hello,
2.写出main函数 public static void main(String[] args)
3.输出语句 System.out.println("hello,world");
*/
1 public class hello { 2 3 public static void main(String[] args) { 4 System.out.println("hello,world"); 5 } 6 7 }
标签:必须 规范 测试 span tde hello style student public
原文地址:https://www.cnblogs.com/mengang/p/9370754.html