public void CreateLine(Grid oGrid, string sTitle,
string sTableName, bool ifGetSig, string sYUint, string sYUint2, string
sYTitle1, string sYTitle2, ....
分类:
Web程序 时间:
2014-04-30 04:49:24
阅读次数:
518
1 /*2 Animal.java3 */4 package animal;5 6 public
abstract class Animal {7 public abstract void cry();8 public abstract String
getanimalName(...
分类:
编程语言 时间:
2014-04-30 04:27:50
阅读次数:
403
public partial class json序列化 : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) { StringBuilder builder =
new StringBuilder(....
分类:
数据库 时间:
2014-04-30 03:27:17
阅读次数:
585
public void sendPlayStateBrocast() {if (mContext !=
null){Intent intent = new
Intent(BROCAST_NAME);intent.putExtra(MusicPlayState.PLAY_STATE_NAME, mPl...
分类:
其他好文 时间:
2014-04-30 02:49:15
阅读次数:
414
1.如果你看到一个数组的行为方式很像一个数据结构,就可以把数组变成对象private int
aa,变成: int aa; public int GetAA() {return aa;}//好处:使得获取的数据更加有效
分类:
其他好文 时间:
2014-04-30 00:55:25
阅读次数:
373
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
Ifactory ifactory =...
分类:
其他好文 时间:
2014-04-30 00:33:52
阅读次数:
504
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
//工厂模式 Ifactory if...
分类:
其他好文 时间:
2014-04-30 00:13:13
阅读次数:
512
package com.szy.service;import
android.app.Service;import android.content.Intent;import
android.os.IBinder;import android.util.Log;public class Exampl...
分类:
其他好文 时间:
2014-04-30 00:10:08
阅读次数:
510
代码: 1 /* 2 test.java 3 */ 4 package test; 5
public class test { 6 public static void main(String args[] ) 7 { 8 CPU ccp= new
CPU();...
分类:
编程语言 时间:
2014-04-28 14:04:45
阅读次数:
439
泛型:一直对这个概念都觉着迷糊,经过最近的阅读,自己有了一定的理解,现分享给大家。从字面的意思理解来看,泛型,泛就是模糊、暂不确定暂定的意思。本人这样理解为,使用泛型就是,定义的一个类型,类型暂不确定,给使用给一个占位符给代替,在使用的时候可以给确定其定义的类型。下面附上eg:
public sta...
分类:
其他好文 时间:
2014-04-28 10:46:48
阅读次数:
861