JAVA网页设计Operators and Assignments(2)
主要缺点就是:速度比较慢,没有C和C++快Objective2)Determinetheresultofapplyingthebooleanequals(Object)methodtoobjectsofanycombinationoftheclassesjava.lang.Stringjava.lang.Booleanandjava.lang.Object.
Theequalsmethodcanbeconsideredtoperformadeepcomparisonofthevalueofanobject,whereasthe==operatorperformsashallowcomparison.Theequalsmethodcompareswhatanobjectpointstoratherthanthepointeritself(ifwecanadmitthatJavahaspointers).
TheequalsmethodappliedtoaString,howeverthatStringwascreated,performsacharacterbycharactercomparison.
Objective3)
Inanexpressioninvolvingtheoperators&|&&||andvariablesofknownvaluesstatewhichoperandsareevaluatedandthevalueoftheexpression.
Objective4)
Determinetheeffectuponobjectsandprimitivevaluesofpassingvariablesintomethodsandperformingassignmentsorothermodifyingoperationsinthatmethod.
UnaryNumericPromotion
Contexts:
・Operandoftheunaryarithmeticoperators+andC
・Operandoftheunaryintegerbit-wisecomplementoperator~
・Duringarraycreation,forexamplenewint,wherethedimensionexpressionxmustevaluatetoanintvalue.
・Indexingarrayelements,forexampletable[‘a’],wheretheindexexpressionmustevaluatetoanintvalue.
・Individualoperandsoftheshiftoperators.
Binarynumericpromotion
Contexts:
・Operandsofarithmeticoperators*,/,%,+andC
・Operandsofrelationaloperators<,<=,>and>=
・NumericOperandsofequalityoperators==and!=
・IntegerOperandsofbit-wiseoperators&,^and|
ConversionofPrimitives
1.3typesofconversionCassignmentconversion,methodcallconversionandarithmeticpromotion
2.booleanmaynotbeconvertedto/fromanynon-booleantype.
3.Wideningconversionsaccepted.Narrowingconversionsrejected.
4.byte,shortcan’tbeconvertedtocharandviceversa.
5.Arithmeticpromotion
5.1Unaryoperators
・iftheoperandisbyte,shortorchar{
convertittoint;
}
else{
donothing;noconversionneeded;
}
5.2Binaryoperators
・ifoneoperandisdouble{
alldouble;converttheotheroperandtodouble;
}
elseifoneoperandisfloat{
allfloat;converttheotheroperandtofloat;
}
elseifoneoperandislong{
alllong;converttheotheroperandtolong;
}
else{
allint;convertalltoint;
}
6.Whenassigningaliteralvaluetoavariable,therangeofthevariable’sdatatypeischeckedagainstthevalueoftheliteralandassignmentisallowedorcompilerwillproduceanerror.
charc=3;//thiswillcompile,eventhoughanumericliteralisbydefaultanintsincetherangeofcharwillacceptthevalue
inta=3;
chard=a;//thiswon’tcompile,sincewe’reassigninganinttochar
chare=-1;//thisalsowon’tcompile,sincethevalueisnotintherangeofchar
floatf=1.3;//thiswon’tcompile,eventhoughthevalueiswithinfloatrange.Hererangeisnotimportant,butprecisionis.1.3isbydefaultadouble,soaspecificcastorf=1.3fwillwork.
floatf=1/3;//thiswillcompile,sinceRHSevaluatestoanint.
floatf=1.0/3.0;//thiswon’tcompile,sinceRHSevaluatestoadouble.
7.Alsowhenassigningafinalvariabletoavariable,evenifthefinalvariable’sdatatypeiswiderthanthevariable,ifthevalueiswithintherangeofthevariableanimplicitconversionisdone.
byteb;
finalinta=10;
b=a;//Legal,sincevalueof‘a’isdeterminableandwithinrangeofb
finalintx=a;
b=x;//Legal,sincevalueof‘x’isdeterminableandwithinrangeofb
inty;
finalintz=y;
b=z;//Illegal,sincevalueof‘z’isnotdeterminable
8.Methodcallconversionsalwayslookfortheexactdatatypeorawideroneinthemethodsignatures.Theywillnotdonarrowingconversionstoresolvemethods,insteadwewillgetacompileerror.
Hereisthefigureofallowableprimitiveconversion.
byteàshortàintàlongàfloatàdouble
任职于太阳微系统的詹姆斯·高斯林等人于1990年代初开发Java语言的雏形,最初被命名为Oak,目标设置在家用电器等小型系统的程序语言 让你能够真正掌握接口或抽象类的应用,从而在原来的Java语言基础上跃进一步,更重要的是,设计模式反复向你强调一个宗旨:要让你的程序尽可能的可重用。 应用在电视机、电话、闹钟、烤面包机等家用电器的控制和通信。由于这些智能化家电的市场需求没有预期的高,Sun公司放弃了该项计划。随着1990年代互联网的发展 那么我书也看了,程序也做了,别人问我的问题我都能解决了,是不是就成为高手了呢?当然没那么简单,这只是万里长征走完了第一步。不信?那你出去接一个项目,你知道怎么下手吗,你知道怎么设计吗,你知道怎么组织人员进行开发吗?你现在脑子里除了一些散乱的代码之外,可能再没有别的东西了吧! 是一种使网页(Web Page)产生生动活泼画面的语言 在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。 不过,每次的执行编译后的字节码需要消耗一定的时间,这同时也在一定程度上降低了 Java 程序的运行效率。 是一种由美国SUN计算机公司(Sun Microsystems, Inc.)所研究而成的语言 那么我书也看了,程序也做了,别人问我的问题我都能解决了,是不是就成为高手了呢?当然没那么简单,这只是万里长征走完了第一步。不信?那你出去接一个项目,你知道怎么下手吗,你知道怎么设计吗,你知道怎么组织人员进行开发吗?你现在脑子里除了一些散乱的代码之外,可能再没有别的东西了吧! 象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。 一直感觉JAVA很大,很杂,找不到学习方向,前两天在网上找到了这篇文章,感觉不错,给没有方向的我指了一个方向,先不管对不对,做下来再说。 一直感觉JAVA很大,很杂,找不到学习方向,前两天在网上找到了这篇文章,感觉不错,给没有方向的我指了一个方向,先不管对不对,做下来再说。 是一种将安全性(Security)列为第一优先考虑的语言 应用在电视机、电话、闹钟、烤面包机等家用电器的控制和通信。由于这些智能化家电的市场需求没有预期的高,Sun公司放弃了该项计划。随着1990年代互联网的发展 你就该学一学Servlet了。Servlet就是服务器端小程序,他负责生成发送给客户端的HTML文件。JSP在执行时,也是先转换成Servlet再运行的。虽说JSP理论上可以完全取代Servlet,这也是SUN推出JSP的本意,可是Servlet用来控制流程跳转还是挺方便的,也令程序更清晰。接下来你应该学习一下Javabean了,可能你早就看不管JSP在HTML中嵌Java代码的混乱方式了,这种方式跟ASP又有什么区别呢? 自从Sun推出Java以来,就力图使之无所不包,所以Java发展到现在,按应用来分主要分为三大块:J2SE,J2ME和J2EE,这也就是Sun ONE(Open Net Environment)体系。J2SE就是Java2的标准版,主要用于桌面应用软件的编程;J2ME主要应用于嵌入是系统开发,如手机和PDA的编程;J2EE是Java2的企业版,主要用于分布式的网络程序的开发,如电子商务网站和ERP系统。 不过,每次的执行编译后的字节码需要消耗一定的时间,这同时也在一定程度上降低了 Java 程序的运行效率。 你就该学一学Servlet了。Servlet就是服务器端小程序,他负责生成发送给客户端的HTML文件。JSP在执行时,也是先转换成Servlet再运行的。虽说JSP理论上可以完全取代Servlet,这也是SUN推出JSP的本意,可是Servlet用来控制流程跳转还是挺方便的,也令程序更清晰。接下来你应该学习一下Javabean了,可能你早就看不管JSP在HTML中嵌Java代码的混乱方式了,这种方式跟ASP又有什么区别呢? 你可以去承接一些项目做了,一开始可能有些困难,可是你有技术积累,又考虑周全,接下项目来可以迅速作完,相信大家以后都会来找你的,所以Money就哗啦啦的。。。。。。
页:
[1]
2