class AddComponentRecursively extends
ScriptableWizard { var componentName : String = ""; @MenuItem ("GameObject/Add
Component Recursively..."...
分类:
其他好文 时间:
2014-06-07 01:09:07
阅读次数:
254
using UnityEngine;using UnityEditor;using
System.Collections; public class AddParent : ScriptableObject{ [MenuItem
("GameObject/+Add Parent")] s...
分类:
其他好文 时间:
2014-06-07 00:36:56
阅读次数:
202
ORA-01754 表只能包含一个LONG类型的列alter table 表名 add 字段名
long raw错误原因:数据表中同时建立了LONG
RAW类型和LONG类型。--------------------------------------------------------------...
分类:
数据库 时间:
2014-06-06 21:31:44
阅读次数:
460
属性列表-归档NSDictionaryl将一个NSDictionary对象归档到一个plist属性列表中//将数据封装成字典NSMutableDictionary
*dict = [NSMutableDictionary dictionary];[dict setObject:@"母鸡" forKe...
分类:
其他好文 时间:
2014-06-06 20:17:05
阅读次数:
262
1、案例介绍:具备索引功能的分节表视图,如图01图012、team_dictionary.plist A组 A1-南非 A2-墨西哥 A3-乌拉圭 A4-法国
B组 B1-阿根廷 ...
分类:
移动开发 时间:
2014-06-06 15:06:07
阅读次数:
263
add by zhj:
在看Django开发的应用时,看到了CSRF,然后搜到了这篇文章,讲的不错。其实CSRF攻击也蛮简单的。当你登陆网站A后,会在本地存有cookie,在cookie没有过期的情况下,你又去访问网站B,而网站B的js中包含发给A的http请求(即http的域名是A),因为这个请求...
分类:
其他好文 时间:
2014-06-06 13:54:34
阅读次数:
354
第一步 使用VS2012新建一个的控制台项目main,编辑main.cpp文件 ,代码如下//
main.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"int add(int a,int b){ return
a+b;}int minus(int a,int b....
分类:
编程语言 时间:
2014-06-06 09:31:33
阅读次数:
327
for(var i =0;i<100;i++) {
}alert(i);//100if(true){ var i="91d"; } alert(i);//91d function add(ad1,ad2){
sum=ad1+ad2; return sum;//如果没有用...
分类:
Web程序 时间:
2014-06-06 09:25:07
阅读次数:
256
Given an array of integers, find two numbers
such that they add up to a specific target number.The function twoSum should
return indices of the two nu...
分类:
其他好文 时间:
2014-06-05 14:15:07
阅读次数:
221
Given two binary strings, return their sum
(also a binary string).For example,a ="11"b ="1"Return"100".public class
Solution { /**The program is us...
分类:
其他好文 时间:
2014-06-05 14:08:35
阅读次数:
188