<script>
????function?Person(name,?age)?{
????????this.name?=?name;
????????this.age?=?age;
????????this.family?=?["father"?,?"mather"?,?"sister"]?;
???...
分类:
编程语言 时间:
2014-09-14 19:28:48
阅读次数:
210
<script>
????function?Person(name,?age)?{
????????this.name?=?name;
????????this.age?=?age;
????????this.family?=?["father"?,?"mather"?,?"sister"]?;
???...
分类:
编程语言 时间:
2014-09-14 18:09:57
阅读次数:
182
原型对象用字面量赋值时需要注意将constructor指回原对象。 <script>
????function?Person(name?,?age){
????????this.name?=?name?;
????????this.age?=?age?;
????????t...
分类:
编程语言 时间:
2014-09-14 16:47:27
阅读次数:
164
<script>
????function?Person(name?,?age){
????????this.name?=?name?;
????????this.age?=?age?;
????????this.say?=?function?(){
????????????retur...
分类:
Web程序 时间:
2014-09-14 12:56:47
阅读次数:
144
//
// 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
#import "AppDelegate.h"#import "Person.h"@implementation AppDelegate@synthesize managedObjectContext = _managedObjectContext;@synthesize managedObject...
分类:
其他好文 时间:
2014-09-13 00:46:14
阅读次数:
281
关键字二、 static(静态)
特点:
static 用于修饰成员(成员函数和成员函数)
static的存在,优先于对象存在,随着类的加载而加载
static所修饰的成员,被所有对象共享
static可以直接被类名调用,格式:System.out.println(Person.country);:类名.静态成员
使用细节
静态方法只能访问静态成员,即st...
分类:
编程语言 时间:
2014-09-12 02:25:32
阅读次数:
232
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
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
在写项目的时候遇到一个问题,sql 语句进行 like in 参数化,按照正常的方式是无法实现的我们一般的思维是:Like 参数:string strSql = "select * from Person.Address where City like '%@add%'";SqlParameter[...
分类:
数据库 时间:
2014-09-11 19:06:52
阅读次数:
353