码迷,mamicode.com
首页 >  
搜索关键字:person    ( 6232个结果
javascript通过组合实现继承
<script> ????function?Person(name,?age)?{ ????????this.name?=?name; ????????this.age?=?age; ????????this.family?=?["father"?,?"mather"?,?"sister"]?; ???...
分类:编程语言   时间:2014-09-14 19:28:48    阅读次数:210
javascript组合模式创建对象
<script> ????function?Person(name,?age)?{ ????????this.name?=?name; ????????this.age?=?age; ????????this.family?=?["father"?,?"mather"?,?"sister"]?; ???...
分类:编程语言   时间:2014-09-14 18:09:57    阅读次数:182
javascript原型对象用字面量赋值
原型对象用字面量赋值时需要注意将constructor指回原对象。 <script> ????function?Person(name?,?age){ ????????this.name?=?name?; ????????this.age?=?age?; ????????t...
分类:编程语言   时间:2014-09-14 16:47:27    阅读次数:164
js对象冒充
<script> ????function?Person(name?,?age){ ????????this.name?=?name?; ????????this.age?=?age?; ????????this.say?=?function?(){ ????????????retur...
分类:Web程序   时间:2014-09-14 12:56:47    阅读次数:144
iOS XML/JSON解析
// // FInterPreterVC.m // FInterpreter // // Created by lanouhn on 14-9-11. // Copyright (c) 2014年 vaercly@163.com 陈聪雷. All rights reserved. // #import "FInterPreterVC.h" #import "Person.h" #impo...
分类:移动开发   时间:2014-09-13 13:23:55    阅读次数:393
Objective-c CoreData
#import "AppDelegate.h"#import "Person.h"@implementation AppDelegate@synthesize managedObjectContext = _managedObjectContext;@synthesize managedObject...
分类:其他好文   时间:2014-09-13 00:46:14    阅读次数:281
JAVA学习第九课(关键字二static)
关键字二、 static(静态) 特点: static 用于修饰成员(成员函数和成员函数) static的存在,优先于对象存在,随着类的加载而加载 static所修饰的成员,被所有对象共享 static可以直接被类名调用,格式:System.out.println(Person.country);:类名.静态成员 使用细节 静态方法只能访问静态成员,即st...
分类:编程语言   时间:2014-09-12 02:25:32    阅读次数:232
《The Story of My Life》Introductiom - Historical and Literary Context - Education of the Deaf and Blind
At the time the Story of My Life was published, the idea of a disabled person as an active member of society was radical. Through there were institute...
分类:其他好文   时间:2014-09-12 01:11:42    阅读次数:268
英语笔记(9)
further my study 继续深造at nights 每夜, 夜夜,经常在夜里She was a person accustomed to staying up late at nights.她是一个习惯熬夜的人。Instead, I was there to talk about step...
分类:其他好文   时间:2014-09-11 19:09:32    阅读次数:181
C# 参数化SQL语句中的like和in
在写项目的时候遇到一个问题,sql 语句进行 like in 参数化,按照正常的方式是无法实现的我们一般的思维是:Like 参数:string strSql = "select * from Person.Address where City like '%@add%'";SqlParameter[...
分类:数据库   时间:2014-09-11 19:06:52    阅读次数:353
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!