__hasProp = {}.hasOwnProperty, __extends =
function(child, parent) { // 派生类时,类方法会生成多个副本。 for (var key in parent) { i...
分类:
其他好文 时间:
2014-05-26 19:36:25
阅读次数:
278
1.process是一个全局进程,你可以直接通过process变量直接访问它。
process实现了EventEmitter接口,exit方法会在当进程退出的时候执行。因为进程退出之后将不再执行事件循环,所有只有那些没有回调函数的代码才会被执行。在下面例子中,setTimeout里面的语句是没有办....
分类:
Web程序 时间:
2014-05-26 17:11:25
阅读次数:
338
参考文章来自objcio网站
一、使用Child
View
Controller
将Table ViewController
作为Child View Controller添加到其他View Controller中。这样的话父Controller可以管理其他View,同时你的Table
View Controller也可以继续管理自己的table
view。当然你需要通过...
分类:
其他好文 时间:
2014-05-26 05:07:07
阅读次数:
198
题目链接:uva 10497 - Sweet Child Makes Trouble
题目大意:有个小屁孩很淘气,总是趁父母不在家的时候去拿家具玩,每次拿n个家具玩,但是放回去的时候一定不会将某个物品放回原处,一定要打乱。问说有多少放的方式满足。
解题思路:dp[i]表示说i个数打乱的情况,dp[i]=(dp[i?1]+dp[i?2])?(i?1)每次新增一个数,放在序列的最后一个位置...
分类:
其他好文 时间:
2014-05-26 04:53:50
阅读次数:
255
Flex父子窗体相互调用1、设计思路(1)子窗体调用父窗体的方法(2)子窗体做了改动后,返回父窗体,父窗体调用子窗体函数2、设计源代码(1)父窗体ParentWindow.mxml:
(2)子窗体Child...
1、ntdll!ZwWaitForSingleObject
线程被挂起,如果下面跟着是这样子:RetAddr : Args to Child : Call S...
分类:
数据库 时间:
2014-05-24 11:48:17
阅读次数:
872
There are N children standing in a line. Each child is assigned a rating value.
You are giving candies to these children subjected to the following requirements:
Each child must have at least one candy.
Children with a higher rating get more candies than...
分类:
其他好文 时间:
2014-05-22 11:00:49
阅读次数:
285
A MeasureSpec encapsulates the layout
requirements passed from parent to child. Each MeasureSpec represents a
requirementfor either the width or the h...
分类:
移动开发 时间:
2014-05-19 12:46:36
阅读次数:
395
父子化(摘自官文原文说明)父子化(Parenting)是使用Unity时需要理解的最重要的概念之一。当某个游戏对象(GameObject)是另一个游戏对象(GameObject)的父级(Parent)时,子级(Child)游戏对象(GameObject)会像其父级(Parent)一样移动、旋转和缩放。正如您的手臂与躯干相连,转动躯..
分类:
其他好文 时间:
2014-05-15 18:43:49
阅读次数:
808
介绍ViewFlipper
ViewFlipper
Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip betwee...
分类:
其他好文 时间:
2014-05-15 18:37:44
阅读次数:
356