-----------android培训、java培训、java学习型技术博客、期待与您交流!------------package com.yang.ex18;import java.util.Properties;/** System:类中的方法和属性都是静态的* out:标准输出,默认是控制台...
分类:
其他好文 时间:
2014-09-07 01:04:54
阅读次数:
210
学习云风的skynet源代码,简单记录下。void skynet_globalmq_push(struct message_queue * queue) { struct global_queue *q= Q; uint32_t tail = GP(__sync_fetch_and_add(&q->...
分类:
Web程序 时间:
2014-09-06 17:24:23
阅读次数:
228
package sync;
public class Test {
public static void main(String[] args) {
Test test = new Test();
//Factory factory = Factory.getInstance();
Producer producer = test.new Producer();
produc...
分类:
编程语言 时间:
2014-09-06 12:30:43
阅读次数:
214
out修饰符定义作用使用注意总结定义out意为output,所以被out修饰的参数叫做输出参数.通过使用out修饰的参数,方法可以返回对应参数的值作用先看一个例子定义变量:1intx=1,y=2,sum;//定义x,y,sum三个整型变量定义方法:1 static void Add(int x,in...
分类:
其他好文 时间:
2014-09-05 23:43:52
阅读次数:
274
详解HelloWorld中得所有内容含义:
public class HelloWorld {
public static void main(String[] args){
System.out.println("Hello,World!") ;
}
}...
分类:
其他好文 时间:
2014-09-05 21:10:12
阅读次数:
177
1 public class Car{ 2 3 String name; 4 int age; 5 6 public Car(String name, int age){ 7 System.out.println("执行构造器"); 8 ...
分类:
其他好文 时间:
2014-09-05 21:05:31
阅读次数:
119
这两天再看敏捷开发流程,我这个算是敏捷博客吗? 哈哈o(∩_∩)o 1 package a.b; 2 3 public class Three 4 { 5 static void Expression() 6 { 7 System.out.print...
分类:
编程语言 时间:
2014-09-05 19:50:52
阅读次数:
272
Description
After 4 years' waiting, the game "Chinese Paladin 5" finally comes out. Tomato is a crazy fan, and luckily he got the first release. Now he is at home, ready to begin his journey. But b...
分类:
其他好文 时间:
2014-09-05 18:21:51
阅读次数:
299
//简单也要写一遍public class Main { public static void main(String[] args) { System.out.println("Hello World!"); }}
分类:
其他好文 时间:
2014-09-05 17:40:21
阅读次数:
143
public class LockTest { /** * @param args */ public static void main(String[] args) { new LockTest().init(); } private void init(){ final Outputer out...
分类:
编程语言 时间:
2014-09-05 09:50:01
阅读次数:
251