①编码之前想一想
说真的,没有什么比两个月后检查自己的代码,却不记得它用来干什么更糟糕的了.注释所有重要的内容,当然那些显而易见的就免了吧.
错落有致.使用空格.根据功能模块化你的代码.阅读RobertC.Martin写的<
没有人喜欢用那些超级长的方法.这通常(几乎总是)意味着你混杂了功能.用更易于管理的方法分离代码.还能使得代码更可重用.
虽然命名int变量为"elligent"或char为"mander"是很好笑;但是,这样的名称并不能说明变量是用来做什么的.
测试,测试,测试,还是测试.测试你的代码.不要等到已经做完程序之后再来测试,否则当你发现一个巨大的bug,却不知道它来自于哪里来的时候,你会追悔莫及.
自动化测试通常都是有价值的.它还有助于节省大量重测试和回归测试的时间.
华为的爱心代码是:
代码如下,随便附一句,一定要看写的源码,我已经尽量马马虎虎的写了,你更容易看懂.
public?class?Test?{
//?第八题
public?static?final?int?NUM?=?100;
public?static?final?String?CLASSNAME?=?"Test.Class";
public?static?void?main(String[]?args)?{
//?第一题
byte?byte1?=?1;
short?short1?=?1;
int?int1?=?1;
long?long1?=?1;
float?float1?=?1;
double?double1?=?1.0;
System.out.println("byte1?-?"?+?byte1);
System.out.println("short1?-?"?+?short1);
System.out.println("int1?-?"?+?int1);
System.out.println("long1?-?"?+?long1);
System.out.println("float1?-?"?+?float1);
System.out.println("double1?-?"?+?double1);
//?第二题
String?name;
char?sex;
int?age;
boolean?isMember;
//?第三题
int?score1;
//?第四题
//?第五题
//?第六题
char?a?=?(char)?A;
System.out.println("整型互转char:"?+?a);
//?第七题
int?x?=?Integer
.parseInt(new?java.text.DecimalFormat("0").format(timor));//?四舍五入
System.out.println("double?-?int?:"?+?x);
//?第八题(定义在最开始)
System.out.println("常量NUM的值:?"?+?NUM);
System.out.println("常量GOOD的值:?"?+?GOOD);
System.out.println("常量CLASSNAME的值:?"?+?CLASSNAME);
System.out.println("常量MAX的值:?"?+?MAX);
//?第九题(自定义商品类)
class?Goods?{
private?String?name;
private?double?price;
private?int?count;
private?double?total;
public?Goods(String?name,?double?price,?int?count)?{
this.name?=?name;
this.price?=?price;
this.count?=?count;
}
public?void?print()?{
total?=?price?*?count;
System.out.println("商品名?价格?数量?总价");
System.out.println(name?+?"?"?+?price?+?"?"?+?count?+?"?"
+?total);
goods.print();
//?第十题
System.out.println("圆的周长:?"?+?(pi?*?d));
System.out.println("圆的面积:?"?+?(pi?*?r?*?r));
//?第十一题
boolean?isVIP?=?false;
char?sex1?=?'男';
StringBuilder?personInfo?=?new?StringBuilder();
personInfo.append("我是一个快乐的骚年");
personInfo
//?第十二题
class?Swaper?{
int?temp?=?num1;
Swaper?swaper?=?new?Swaper();
swaper.change(a1,?b1);
程序员的表白代码
第一条语言:Java代码翻译:直到死之前,每天爱你多一点代码:while(lifeend){love++;}
第二条语言:C语言代码翻译:IcannotsayHellototheWorldwithoutu.代码:#incldestdio.hintmain(){printf(HelloWorldn);retrn0;}//IcannotsayHellototheWorldwithoutu.
第三条语言:python代码翻译:山无陵,江水为竭,冬雷震震,夏雨雪,天地合,乃敢与君绝!代码:if(mountain.arris==None):if(river.water==None):if(winter.thunder==True):if(summer.snow==True):if(sky.height==ground.height):i.withyou=Falseelse:i.withyou=True.
第四条语言:Erlang代码代码翻译:深圳相遇,至死不渝代码:-module(you_and_me).-export([start/1]).-record(person,{name,address,status}).start(Name)-one_world(Name).one_world(Name)keep_to_love_you(Person).say_goodbye(Person)-io:format(~p:seeyounextworld!~n,[Person#person.name]).see_you_next_world(Name)-one_world(Name).
第五条语言:Java语言代码翻译:爱你到天荒地老代码:while(!world.destroy){System.out.println(iloveyou);}
以上就是土嘎嘎小编为大家整理的程序员爱心代码java相关主题介绍,如果您觉得小编更新的文章只要能对粉丝们有用,就是我们最大的鼓励和动力,不要忘记讲本站分享给您身边的朋友哦!!