1、static{}(即static块),会在类被加载的时候执行且仅会被执行一次,一般用来初始化静态变量和调用静态方法。主要语句:package exam2;public class A { public A() { System.out.println("constructor...
分类:
其他好文 时间:
2014-10-29 23:53:40
阅读次数:
281
Jdk7新增的switch 语句中常量可以string类型,
例如:
@Test
public void test_1(){
String string = "hello";
switch (string) {
case "hello":
System.out.println(string);
break;
default:
throw new Illeg...
分类:
编程语言 时间:
2014-10-29 21:37:27
阅读次数:
170
JAVA代码测试类 public?class?TestQuartz?{
public?void?test(){
System.out.println("*********************Quartz的任务调度*********************");
}
} Quartz配置文件 <?xml?version="1.0"?e...
分类:
编程语言 时间:
2014-10-29 15:04:21
阅读次数:
137
code1:object factorial{ def main(args:Array[String])={ println(factorial(args(0).toInt)) } def factorial(x:Int):Int = if (x==0) 1 else x * fa...
分类:
其他好文 时间:
2014-10-29 12:52:22
阅读次数:
176
在代码业务中,条件判断是必不可少的,控制流程的语句在每种语言中都是差不多的。swift包括了:
if,switch,for-in,for,while,do-while
if 条件语句 (if else) (if... else if ... else)
判断条件为true时执行相关代码。例如:
var a = 0
if a > 0 {
println("...
分类:
编程语言 时间:
2014-10-28 17:50:40
阅读次数:
198
理解继承是理解面向对象程序设计的关键。在Java中,通过keywordextends继承一个已有的类,被继承的类称为父类(超类,基类),新的类称为子类(派生类)。在Java中不同意多继承。(1)继承class Animal{ void eat(){ System.out.println("Ani.....
分类:
编程语言 时间:
2014-10-28 13:42:29
阅读次数:
170
1.来看看swift的第一个程序: println("hello,world") 第一个Swift程序完毕 特点: (1) 看起来很不可思议啊,c,c++,c#,java都有main函数作为入口,而swift并不需要main函数作为程序的入口,同样也不需要在语句后面加上分号(哈哈哪些初学C的人是不....
分类:
编程语言 时间:
2014-10-28 11:35:54
阅读次数:
134
1 // 四舍五入 2 System.out.println(Math.round(11.4)); 3 System.out.println(Math.round(11.6)); 4 System.out.println(Math.r...
分类:
其他好文 时间:
2014-10-28 10:22:44
阅读次数:
211
/* * 普通new对象的过程! */ Person pp = new Person(); System.out.println(pp); /* ...
分类:
编程语言 时间:
2014-10-28 09:15:59
阅读次数:
234
1.新建记事本文件helloworld.java2.在记事本输入下面代码:class Demo{ public static void main(String[] args) { System.out.println("hello java"); }}3.在cmd进...
分类:
编程语言 时间:
2014-10-28 01:57:52
阅读次数:
234