码迷,mamicode.com
首页 >  
搜索关键字:function object    ( 89684个结果
存储过程更新
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
What is tail-recursion
Consider a simple function that adds the first N integers. (e.g.sum(5) = 1 + 2 + 3 + 4 + 5 = 15).Here is a simple Python implementation that uses recu...
分类:其他好文   时间:2014-05-08 17:35:09    阅读次数:286
U3D关于message的使用
Message相关有3条指令:SendMessage ("函数名",参数,SendMessageOptions) //GameObject自身的ScriptBroadcastMessage ("函数名",参数,SendMessageOptions) //自身和子Object的ScriptSendMe...
分类:其他好文   时间:2014-05-08 17:33:35    阅读次数:302
javascript焦点图(暂时不能自动切换)
window.onload=function() {             var img=document.getElementById("img").children;             var lis=document.getElementById('ul').getElementsByTagName("li"); //这里是获取需要执行动态效果的demo           ...
分类:编程语言   时间:2014-05-08 16:06:15    阅读次数:386
lua中的冒号和点
在lua中创建一个Actor对象function Actor.new() local temp = {} setmetatable(temp, Actor) temp.x = 10 temp.y = 20 return tempendobj = Actor.new()那么obj.x = 1...
分类:其他好文   时间:2014-05-08 15:04:41    阅读次数:348
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
Leetcode | Two Sum
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-05-08 06:33:29    阅读次数:339
Jquery操作select小结
每次操作select都要查资料,干脆总结一下。为select设置placeholder为Select添加事件,当选择其中一项时触发$("#select_id").change(function(){ //code...});jQuery获取Select选择的Text和Value:var che...
分类:Web程序   时间:2014-05-08 05:48:25    阅读次数:509
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!