java随记 2月16】的更多相关文章

1.a=a+b 等于 a+=b ,且a+=b隐含强制类型转换 2.^ 表示异或   两个二进制同号为假,异号为真    即 0^0=0,1^1=0,0^1=1 3.三元运算    布尔表达式 ?表达式1:表达式2       例如: String str = (8>5) ? "8大于5" : "8不大于5" 4.equals方法是java.lang.Object类方法.可以用于字符串比较内容,而对于非字符串来说,是只想的对象是否相同,例如 String s1,…
2016年12月21日 星期三 --出埃及记 Exodus 21:16 "Anyone who kidnaps another and either sells him or still has him when he is caught must be put to death.拐带人口,或是把人卖了,或是留在他手下,必要把他治死.…
2016年12月16日 星期五 --出埃及记 Exodus 21:11 If he does not provide her with these three things, she is to go free, without any payment of money.若不向她行这三样,她就可以不用钱赎,白白地出去.…
2016年11月25日 星期五 --出埃及记 Exodus 20:16 "You shall not give false testimony against your neighbor.不可作假见证陷害人.…
2016年11月16日 星期三 --出埃及记 Exodus 20:7 "You shall not misuse the name of the LORD your God, for the LORD will not hold anyone guiltless who misuses his name.不可妄称耶和华你 神的名,因为妄称耶和华名的,耶和华必不以他为无罪.…
2016年10月31日 星期一 --出埃及记 Exodus 19:16 On the morning of the third day there was thunder and lightning, with a thick cloud over the mountain, and a very loud trumpet blast. Everyone in the camp trembled. 到了第三天早晨,在山上有雷轰,闪电,和密云,并且角声甚大,营中的百姓尽都发颤.…
2016年10月16日 星期日 --出埃及记 Exodus 18:27 Then Moses sent his father-in-law on his way, and Jethro returned to his own country.此后,摩西让他的岳父去,他就往本地去了.…
2018年10月16日直播内容 架构师揭秘springboot对springmvc的自动配置原理 直播地址:https://ke.qq.com/course/179440?tuin=9b386640 工作日14:00-15:00,     20:00-21:00 链接: https://pan.baidu.com/s/1Tev73Gj3qS9ldqIvuC-JMQ 提取码: ch4r 交流群:364857634 更多更全面课程…
2019年12月16日18:58:55 2019年10月04日12:20:59 1. nodejs简介 Node.js是一个让JavaScript运行在服务器端的开发平台,它让JavaScript的触角伸到了服务器端,可以与PHP.JSP.Python.Ruby平起平坐. 但Node似乎有点不同: ● Node.js不是一种独立的语言,与PHP.JSP.Python.Perl.Ruby的"既是语言,也是平台"不同,Node.js的使用JavaScript进行编程,运行在JavaScri…
2019年12月13日10:35:20 1.介绍 2019年10月31日15:09:03 2.基本语法 2.1 定义变量 2019年10月31日16:12:34 1.函数外必须使用var定义变量 var a=1 b:=5 声明变量的一般形式是使用 var 关键字: var name type 其中,var 是声明变量的关键字,name 是变量名,type 是变量的类型. 2.没有全局变量说法,只有包变量 3.集中定义变量 var ( a int c string d bool ) 4.使用var…