码迷,mamicode.com
首页 >  
搜索关键字:child    ( 3634个结果
Flex事件机制学习-自定义事件实现类间通信 .
今天,学习Flex自定义事件,可以使两个类通信,定义一个Main类。 public class Main extends Sprite { public function Main() { //演示ChildSprite类是与Main类通信,ChildSprite类稍后说明;var child:Ch...
分类:其他好文   时间:2014-07-22 22:57:33    阅读次数:229
【leetcode】Candy
There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requi...
分类:其他好文   时间:2014-07-19 21:07:18    阅读次数:188
linux fork函数浅析
#include #include /*功能:复制进程參数:无返回值: 成功: 父进程:返回子进程id 子进程:返回0 失败: 返回-1*/pid_t fork(void); 由fork创建的新进程被称为子进程(child process)。该函数...
分类:系统相关   时间:2014-07-19 21:05:30    阅读次数:311
查看SharePoint list的xml
http://{0}/_vti_bin/owssvr.dll?Cmd=Display&List={1}&XMLDATA=TRUE{0} – The URL to your site. This could be the root web or a child site.{1} – The GUID ...
分类:其他好文   时间:2014-07-16 18:57:53    阅读次数:167
BIND_MISMATCH导致过多VERSION COUNT的问题
并不是用了绑定变量就一定都会游标共享,下面我们介绍的就是一种例子。BIND_MISMATCH导致VERSION COUNT过多的原因解释:This is due to the bind buffer mismatch of the current child cursor. If oracle is...
分类:其他好文   时间:2014-07-16 18:16:45    阅读次数:295
TypeConverter使用
如下代码, class Human{ public string Name{get;set;} public Human Child{get;set;}}为了让以上代码工作,则必须提供一个类型转换, 从string转到Human。步骤如下,1. 定义StringToHumanConverter...
分类:其他好文   时间:2014-07-16 16:11:42    阅读次数:184
Validating Receipts Locally
Validating Receipts Locally Perform receipt validation immediately after your app is launched, before displaying any user interface or spawning any child processes. Implement this check in the ma...
分类:其他好文   时间:2014-07-16 11:48:20    阅读次数:267
多态的使用意义
1.多态(Polymorphism):就是父类型的引用可以指向子类型的对象。 2.Parent p = new Child ();当使用多态调用方法时,首先检查父类有没有该方法,若有,则执行该方法;若没有,则编译错误。 3.一共有两种类型的强制类型转换: a) 向上类型转换(upcast): 比如说将Cat类型转换为Animal类型,即子类型转换为父类型。对于向上类型转换,不需要显式使用强...
分类:其他好文   时间:2014-07-14 13:22:25    阅读次数:212
解决alaert.builder二次调用报错的bug
报错的代码是: The specified child already has a parent. You must call removeView() on the child's parent first 大致是说你的弹出框中的view已经绑定了一个paren,就是你的弹出框。当你再次调用显示的时候,他以为你又要绑定到一个新的窗口上去。解决的方法是每次显示之前都重新填充设置view.如下:...
分类:其他好文   时间:2014-07-12 23:50:41    阅读次数:354
CSS超过指定的宽度加省略号
/*table-layout:fixed 会使表格均等分*/#TreeView1 table { width:290px; table-layout: fixed; }#TreeView1 td:first-child { ...
分类:Web程序   时间:2014-07-12 16:11:21    阅读次数:148
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!