ChartTest.aspx:ChartTest.aspx.cs:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.We...
分类:
其他好文 时间:
2014-11-25 12:42:08
阅读次数:
375
A.概念类对象:类也是一个对象,是Class类型的对象实例对象:创建的对象,有一个isa指针指向类B.操作获取内存中的内对象1.使用实例对象获取Class c = [p class];不必使用*2.使用类获取Class c = [Person class];C.类的加载1.先加载父类,再加载子类,加...
分类:
其他好文 时间:
2014-11-24 20:31:36
阅读次数:
123
apache commons-httpclient使用实例
分类:
Web程序 时间:
2014-11-21 20:26:23
阅读次数:
265
package com.ceac.deng;import android.R.string;import android.support.v7.app.ActionBarActivity;import android.app.AlertDialog;import android.app.AlertDialog.Builder;import android.content.DialogInterfa...
分类:
移动开发 时间:
2014-11-19 16:10:59
阅读次数:
260
回调函数嵌套解决方案——eventProxyAPI地址:https://github.com/JacksonTian/eventproxy1、安装eventproxy执行npm install eventProxy.2、使用前进行声明,代码如下:var EP = require('eventprox...
分类:
Web程序 时间:
2014-11-14 12:10:08
阅读次数:
182
在nodejs中,可以通过fs(file system)模块进行文件的I/O操作。API链接地址:http://nodeapi.ucdok.com/#/api/fs.html下面进行fs文件系统的使用实例:1、模块调用声明:var fs= require('fs'); var path = requ...
分类:
Web程序 时间:
2014-11-11 16:11:11
阅读次数:
212
处理流使用实例:BufferedReader 字符输入处理流BufferedReader类里面有个方法叫readLine(),读取一行数据并返回这行数据生成BufferedReader对象的方法:BufferedReader br = new BufferedReader(new FileReade...
分类:
其他好文 时间:
2014-11-08 22:08:25
阅读次数:
265
1、block的功能是实现代码的回调,简单高效[UIView animateWithDuration:1.0 animations:^{ //需要执行的代码 self.cover.alpha = 0.0; self.imageBtn.frame = CGRectMake(85, 8...
分类:
其他好文 时间:
2014-11-08 00:42:15
阅读次数:
147
转 row_number函数的使用SQL Server数据库ROW_NUMBER()函数的使用是本文我们要介绍的内容,接下来我们就通过几个实例来一一介绍ROW_NUMBER()函数的使用。实例如下:1.使用row_number()函数进行编号,如selectemail,customerID,ROW_...
分类:
其他好文 时间:
2014-11-06 14:25:13
阅读次数:
195
AIDL (Android Interface Definition Language) 是一种IDL 语言,用于生成可以在Android设备上两个进程之间进行进程间通信(interprocess communication, IPC)的代码。如果在一个进程中(例如Activity)要调用另一个进程中(例如Service)对象的操作,就可以使用AIDL生成可序列化的参数。本文简单介绍AIDL的使用...
分类:
系统相关 时间:
2014-11-05 17:15:31
阅读次数:
238