码迷,mamicode.com
首页 >  
搜索关键字:protected; public    ( 86051个结果
silverlight 双坐标轴
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
java学习之第五章编程题示例(初学篇)
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
可以将一些配置信息已json格式存在数据库中读取的时候序列化。
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
onTouch 和onTouchEvent区别
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
java第四章编程题(初学篇)
代码: 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!