编写高质量代码改善java程序的151个建议——[1-3]基础?亦是基础
原创地址: http://www.cnblogs.com/Alandre/ (泥沙砖瓦浆木匠),需要转载的,保留下! Thanks
The reasonable man adapts himself to the world;the unreasonable one persists in trying to adapt the world to himself. —萧伯纳
相信自己看得懂就看得懂了,相信自己能写下去,我就开始写了.其实也简单—泥沙砖瓦浆木匠
Written In The Font
Today , I am writing my java notes about <编写高质量代码改善java程序的151个建议> -秦小波.
Three pieces[1-3]:
1.Don't code by confusing letters in the constants and variables [不要在常量和变量中出现易混淆的字母]
2.Don't change the constants into the variable. [莫让常量蜕变成变量]
3.Make the the types of ternary operators the same. [三元操作符的类型务必一致]
Don't code by confusing letters in the constants and variables
from the book:
public class Client01 {
public static void main(String [] args)
{
long i = 1l;
System.out.println("i的两倍是:"+(i+i));
}
}
Outputs:
2
(unbelieved?just ctrl c + ctrl v run the code !)
In my words:
‘1l’is not ‘11’. But we always code by the confusing things . then bebug for a long time , finally we will laught at ourselves with the computer and codes face to face.”What fucking are the coder?”lol,smile ! carm down , because u r so lucky to read this . i will tell some excemples to keep them away. away ? really away?
Step 1: somthing about Coding Standards
★Constants should always be all-uppercase, with underscores to separatewords. [常量都要大写,用下划线分开]
See a case from my project ITP:
package sedion.jeffli.wmuitp.constant; public class AdminWebConstant
{ public static final String ADMIN_BASE = "/admin";
public static final String WEB_BASE = ADMIN_BASE + "/web"; /**
* view
*/
public static final String ADMIN_LOGIN_VIEW = WEB_BASE + "/login";
public static final String ADMIN_INDEX_VIEW = ADMIN_BASE + "/index/index"; /**
* 返回String状态
*/
public static final int RESULT_SUCCESS = 1;
public static final int RESULT_FAIL = 0;
}
★Camel Case:[变量命名驼峰原则,自然你也可以选择其他的法则等]
if u wanna do it , right now ! it can make your codes more beautiful and clean! amazing ! u learned it , keep on!!!
package sedion.jeffli.wmuitp.util; import javax.servlet.http.HttpSession; import sedion.jeffli.wmuitp.entity.TeacherInfo;
import sedion.jeffli.wmuitp.entity.UserLogin; public class AdminUtil
{
public static final String ADMIN = "admin";
public static final String ADMIN_ID = "adminID";
public static final String TEACHER_ID = "teacherID"; public static void saveAdminToSession(HttpSession session,UserLogin userLogin)
{
session.setAttribute(ADMIN, userLogin);
} public static void saveAdminIDToSession(HttpSession session,UserLogin userLogin)
{
session.setAttribute(ADMIN_ID, userLogin.getUlId().toString());
}
public static UserLogin getUserLoginFromHttpSession(HttpSession session)
{
Object attribute = session.getAttribute(ADMIN);
return attribute == null ? null : (UserLogin)attribute;
} public static String getUserLoginIDFromHttpSession(HttpSession session)
{
Object attribute = session.getAttribute(ADMIN_ID);
return attribute == null ? null : (String)attribute;
} }
#please remeber the camel , then u can write a nice code.

Step 2: somthing can make your program easier to understand
some letters should not be used with the numbers,like l O … they are the brother of the numbers.but we can do some to avoid. like use ‘L’ , and write some notes about them.

Don't change the constants into the variable
A magical demo:
public class Client02
{
public static void main(String [] args)
{
System.out.println("const can change: "+ Const.RAND_COSNT);
} //接口常量
interface Const
{
public static final int RAND_COSNT = new Random().nextInt();
}
}
#I think the demo is bad. RAND_COSNT is not a constant and we never do that.
what is Constants ?
Constants are immutable values which are known at compile time and do not change for the life of the program.But if the project is too large to manage.There will be a problem.Let me show u!

example:
//file: A.java
public interface A
{
String goodNumber = "0.618";
} //file: B.java
public class B
{
public static void main(String [] args)
{
System.out.println("Class A's goodNumber = " +A.goodNumber);
}
}
Outputs:
|
Now we change A.java –> goodNumber to “0.6180339887”
//file: A.java
public interface A
{
String goodNumber = "0.6180339887";
}
“javac A.java”then “java B” , we will find the outputs is the same:
|
why??????????????????
just see the class of B, use “ javap –c B”:
Compiled from "B.java"
public class B {
public B();
Code:
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: return public static void main(java.lang.String[]);
Code:
0: getstatic #2 // Field java/lang/System.out:Ljava/io/PrintStream;
3: ldc #3 // String Class A's goodNumber = 0.618
5: invokevirtual #4 // Method java/io/PrintStream.printl
n:(Ljava/lang/String;)V
8: return
}
#3: ldc #3 // String Class A's goodNumber = 0.618
ok , we see! the last interface A was already in the class B. so we can “javac B.java”to deal.
All in all ,
Java Interface is usually the best place to store The Constants.
[Java Interface 通常是常量存放的最佳地点]
A best way store constants : static fianl XXX static Object getXXX()
it shows the Java dynamic advantage and a constant principle.
//file:A.java
public class A
{
private static final String goodNumber = "0.6180339887";
public static String getGoodNumber()
{
return goodNumber;
}
} //file:B.java
public class B
{
public static void main(String [] args)
{
System.out.println("Class A's goodNumber = " +A.getGoodNumber());
}
}
Make the the types of ternary operators the same.
from the book:
public class Client03 {
public static void main(String[] args) {
int i = 80;
String s = String.valueOf(i<100?90:100);
String s1 = String.valueOf(i<100?90:100.0);
System.out.println(" 两者是否相等:"+s.equals(s1));
}
}
Outputs:
false
see the compiled code ,use “javap –c Client03”,we will see:
23: if_icmpge 32
26: ldc2_w #3 // double 90.0d
29: goto 35
32: ldc2_w #5 // double 100.0d
the transformation rules about ternary operators.
三元操作符类型的转换规则:
1.若两个操作数不可转换,则不做转换,返回值为Object 类型。
2.若两个操作数是明确类型的表达式(比如变量),则按照正常的二进制数字来转换,int 类型转换为long 类型,long 类型转换为float 类型等。
3.若两个操作数中有一个是数字S,另外一个是表达式,且其类型标示为T,那么,若数字S 在T 的范围内,则转换为T 类型;若S 超出了T 类型的范围,则T 转换为S类型(可以参考“建议22”,会对该问题进行展开描述)。
4.若两个操作数都是直接量数字(Literal) ,则返回值类型为范围较大者。
Editor's Note
合抱之木,生于毫末;九层之台,起于累土;千里之行,始于足下. ---老子<<道德经>>

快来加入群【编程乐园】(365234583)。 http://t.cn/RvGAuJr
编写高质量代码改善java程序的151个建议——[1-3]基础?亦是基础的更多相关文章
- 博友的 编写高质量代码 改善java程序的151个建议
编写高质量代码 改善java程序的151个建议 http://www.cnblogs.com/selene/category/876189.html
- 编写高质量代码改善java程序的151个建议——导航开篇
2014-05-16 09:08 by Jeff Li 前言 系列文章:[传送门] 下个星期度过这几天的奋战,会抓紧java的进阶学习.听过一句话,大哥说过,你一个月前的代码去看下,慘不忍睹是吧.确实 ...
- 编写高质量代码:改善Java程序的151个建议 --[117~128]
编写高质量代码:改善Java程序的151个建议 --[117~128] Thread 不推荐覆写start方法 先看下Thread源码: public synchronized void start( ...
- 编写高质量代码:改善Java程序的151个建议 --[106~117]
编写高质量代码:改善Java程序的151个建议 --[106~117] 动态代理可以使代理模式更加灵活 interface Subject { // 定义一个方法 public void reques ...
- 编写高质量代码:改善Java程序的151个建议 --[78~92]
编写高质量代码:改善Java程序的151个建议 --[78~92] HashMap中的hashCode应避免冲突 多线程使用Vector或HashTable Vector是ArrayList的多线程版 ...
- 编写高质量代码:改善Java程序的151个建议 --[65~78]
编写高质量代码:改善Java程序的151个建议 --[65~78] 原始类型数组不能作为asList的输入参数,否则会引起程序逻辑混乱. public class Client65 { public ...
- 编写高质量代码:改善Java程序的151个建议 --[52~64]
编写高质量代码:改善Java程序的151个建议 --[52~64] 推荐使用String直接量赋值 Java为了避免在一个系统中大量产生String对象(为什么会大量产生,因为String字符串是程序 ...
- 编写高质量代码:改善Java程序的151个建议 --[36~51]
编写高质量代码:改善Java程序的151个建议 --[36~51] 工具类不可实例化 工具类的方法和属性都是静态的,不需要生成实例即可访 问,而且JDK也做了很好的处理,由于不希望被初始化,于是就设置 ...
- Github即将破百万的PDF:编写高质量代码改善JAVA程序的151个建议
在通往"Java技术殿堂"的路上,本书将为你指点迷津!内容全部由Java编码的最佳 实践组成,从语法.程序设计和架构.工具和框架.编码风格和编程思想等五大方面,对 Java程序员遇 ...
随机推荐
- py3.0第四天 函数,生成器迭代器等
1.列表生成式,迭代器&生成器 孩子,我现在有个需求,看列表[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],我要求你把列表里的每个值加1,你怎么实现?你可能会想到2种方式 > ...
- MFC中添加控制台输出
可以在CWinApp的InitInstance()中调用下面的函数,以生成控制台: #include <io.h> #include <fcntl.h> void InitCo ...
- Python 协程 61
什么是协程 协程,又称微线程,纤程.英文名Coroutine.一句话说明什么是线程:协程是一种用户态的轻量级线程. 协程的特点 协程拥有自己的寄存器上下文和栈.协程调度切换时,将寄存器上下文和栈保存到 ...
- python+pycharm环境搭建
1.下载python安装包 https://www.python.org/downloads/ 2.下载pycharm安装包. https://www.jetbrains.com/pycharm/do ...
- Calendar and GregorianCalendar
1.GregorianCalendar是Calendar的一个具体子类,提供了世界上大多数国家/地区使用的标准日历系统 2.注意 (1)月份:1月到12月[0-11] (2)星期:周日到周六[1-7] ...
- Must Know Tips/Tricks in Deep Neural Networks
Must Know Tips/Tricks in Deep Neural Networks (by Xiu-Shen Wei) Deep Neural Networks, especially C ...
- 深入理解JVM(一)——基本原理
前言 JVM一直是java知识里面进阶阶段的重要部分,如果希望在java领域研究的更深入,则JVM则是如论如何也避开不了的话题,本系列试图通过简洁易读的方式,讲解JVM必要的知识点. 运行流程 我们都 ...
- 探秘JS的异步单线程
对于通常的developer(特别是那些具备并行计算/多线程背景知识的developer)来讲,js的异步处理着实称得上诡异.而这个诡异从结果上讲,是由js的“单线程”这个特性所导致的. 我曾尝试用“ ...
- 笔记:安卓App消息处理机制
内容简述 类似Binder机制,MessageQueue.Looper也有底层的C++实现,涉及文件管道和驱动等. 以下仅从Java层的Looper.Handler和MessageQueue等相关类型 ...
- Java线程小刀牛试
线程简介 什么是线程 现代操作系统调度的最小单元是线程,也叫轻量级进程(Light Weight Process),在一个进程里可以创建多个线程,这些线程都拥有各自的计数器.堆栈和局部变量等属性,并且 ...