js
在线学习手册http://javascript.jz123.cn/http://www.w3school.com.cn/js/http://www.itlearner.com/code/js_ref/contents.htmhttp://www.w3cschool.cc/jquery/jque...
分类:
Web程序 时间:
2014-05-10 20:20:07
阅读次数:
505
最近接触开源项目比较多,关注一下许可证的问题。
饱受诟病的病毒式copyleft就是GPL了。。ref:http://code.csdn.net/news/2819582ref:http://www.openfoundry.org/LicenseWizard/index.htm,真实的使用效果需要....
分类:
其他好文 时间:
2014-05-09 17:28:00
阅读次数:
261
#include#includeusing namespace std;int main(){
const int N=100; int const N=100; //二者等价 int mark=0; //1 int*
ref_mark=&mark; int* c...
分类:
其他好文 时间:
2014-05-08 10:02:04
阅读次数:
205
Explain的type显示的是访问类型,是较为重要的一个指标,结果值从好到坏依次是:system
> const > eq_ref > ref > fulltext > ref_or_null > index_merge
> unique_subquery > index_subquery > r...
分类:
其他好文 时间:
2014-05-07 21:26:56
阅读次数:
282
ref
关键字使用参数按引用传递,而不是值,通过引用传递的效果是在方法中对参数的任何修改都会反映在调用方法
的基础参数中。引用参数的值与基础参数变量的值始终是一样的。1.若要使用 ref 参数,则方法定义和调用方法都必须显示使用 ref关键字2.传递到 ref
参数必须先初始化,这与out不同,ou...
分类:
其他好文 时间:
2014-05-07 14:09:21
阅读次数:
295
params,ref,out都是方法参数
首先类似这样的,传递的参数args添加了params修饰public void OpenWindow(params object[] args){ int
id=args[0]; Hashtable tab=(Hashtable)args[1];}publi...
分类:
其他好文 时间:
2014-05-07 00:03:52
阅读次数:
402
//1. ref/out是用来修饰方法的参数的. //2. 调用的时候 给ref/out赋值
不能赋值1个常量 只能给变量. 变量前面也要加1个ref/out //3. 在给ref/out参数赋值的时候,赋值的是变量的地址. //4.
ref在方法中可以...
分类:
其他好文 时间:
2014-05-04 11:06:33
阅读次数:
273
.h
#include "cocos2d.h"
#include "cocos-ext.h"
#include "ui/CocosGUI.h"
#include "cocostudio/CocoStudio.h"
USING_NS_CC;
USING_NS_CC_EXT;
using namespace ui;
void selectedItemEvent(Ref *pSender, ...
分类:
其他好文 时间:
2014-05-03 00:18:30
阅读次数:
442
输入:表名、每页显示的记录数、当前页输出:总记录数、总页数、结果集--首先,创建一个包,定义游标类型CREATE OR REPLACE PACKAGE
fenye_package ISTYPE fenye_cursor IS REF CURSOR;END fenye_package; --输入:表名...
分类:
数据库 时间:
2014-05-02 22:02:04
阅读次数:
411
.h
Text* _displayValueLabel;
void selectedEvent(Ref* pSender,CheckBoxEventType type);
.cpp init()函数
_touchGroup = Layer::create();
addChild(_touchGroup);
Size winSize = ...
分类:
其他好文 时间:
2014-05-01 17:18:48
阅读次数:
453