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
public boolean dispatchTouchEvent(MotionEvent
event) { if (mOnTouchListener != null && mOnTouchListener.onTouch(this,
event)) { retu...
分类:
其他好文 时间:
2014-04-28 18:01:29
阅读次数:
556
查找输入序列中的最大最小数值,要求时间复杂度为1.5nC#实现如下:public class
MinMaxFinder where T : IComparable { public void FindMinMax(T[] array, int
startIndex, int en...
分类:
其他好文 时间:
2014-04-28 17:43:30
阅读次数:
441
放置方法的程序单元是类,类中提供一个或多个方法,为类执行任务。方法执行一个任务,并可返回一个结果。类的实例称为对象。给对象发送消息称为一个方法调用,告诉对象要执行一个任务。对象有属性,可以在程序中使用,这些属性在对象的类中用字段指定属性。public
class Count//每个类声明包含关键字c...
分类:
其他好文 时间:
2014-04-28 16:18:47
阅读次数:
472
class Program { int count; public Program() { }
public Program(int count) { this.count = count; ...
分类:
其他好文 时间:
2014-04-28 14:49:57
阅读次数:
477
代码: 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