码迷,mamicode.com
首页 >  
搜索关键字:object detection    ( 37814个结果
sqlserver 触发器实例
实例1:updateUSE [数据库名称]GO/****** Object: Trigger [dbo].[触发器名称] Script Date: 05/08/2014 12:40:25 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO...
分类:数据库   时间:2014-05-09 10:50:54    阅读次数:481
存储过程更新
USE [NLISSST]GO/****** Object: StoredProcedure [SST].[sp_ArbitrationUpdateByID] Script Date: 05/08/2014 10:29:59 ******/SET ANSI_NULLS ONGOSET QUO...
分类:其他好文   时间:2014-05-08 18:50:01    阅读次数:275
存储过程删除举例
USE [NLISSST]GO/****** Object: StoredProcedure [SST].[sp_ArbitrationDeleteByID] Script Date: 05/08/2014 10:26:49 ******/SET ANSI_NULLS ONGOSET QUO...
分类:其他好文   时间:2014-05-08 18:46:50    阅读次数:226
U3D关于message的使用
Message相关有3条指令:SendMessage ("函数名",参数,SendMessageOptions) //GameObject自身的ScriptBroadcastMessage ("函数名",参数,SendMessageOptions) //自身和子Object的ScriptSendMe...
分类:其他好文   时间:2014-05-08 17:33:35    阅读次数:302
sahrepoint 上次数据到文档库
sharepoint学习笔记汇总 http://blog.csdn.net/qq873113580/article/details/20390149    protected void Button1_Click(object sender, EventArgs e)         {             using (SPSite site = new SPSite("http:...
分类:其他好文   时间:2014-05-08 17:13:44    阅读次数:254
Uva 12012 Detection of Extraterrestrial 求循环节个数为1-n的最长子串长度 KMP
题目链接:点击打开链接 题意: 给定一个字符串str 求字符串str的 循环节个数为 1-len 个的 最长子串长度 思路:套用kmp的性质 #include #include #include using namespace std; #define n 1300 void getnext(char str[n],int next[n]){ int m=strlen(str);...
分类:其他好文   时间:2014-05-08 17:12:53    阅读次数:330
C#下点击右键之后自动选择为当前选中的节点
private void treeView1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) { if(e.Button==MouseButtons.Right) { TreeNode tn=treeView1.GetNodeAt(e.X,e.Y); if(tn!=null)treeView1.SelectedNode...
分类:其他好文   时间:2014-05-08 16:24:44    阅读次数:308
Java随笔
Java String 字符串的HashCode值 public int hashCode() Returns a hash code for this string. The hash code for a String object is computed as  s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]   using int ari...
分类:编程语言   时间:2014-05-08 10:44:53    阅读次数:533
Lua(1)
1.the use of functions in table fields is a key ingredient for some advanceduses of Lua, such as modules and object-oriented programming.
分类:其他好文   时间:2014-05-08 10:24:51    阅读次数:302
设计模式之美:Role Object(角色对象)
本文介绍一种设计模式 Role Object(角色对象)模式。
分类:其他好文   时间:2014-05-08 07:20:47    阅读次数:389
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!