码迷,mamicode.com
首页 >  
搜索关键字:introduce    ( 268个结果
prototype属性
function People(name){ this.name=name; //对象方法 this.Introduce=function(){ console.log(this.name); } } //类方法 People.Run=function(){ console.log("I can r... ...
分类:其他好文   时间:2017-12-01 18:39:18    阅读次数:109
重构手法之在对象之间搬移特性【4】
返回总目录 本小节目录 Introduce Foreign Method(引入外加函数) Introduce Local Extension(引入本地扩展) Introduce Foreign Method(引入外加函数) Introduce Local Extension(引入本地扩展) 7Int ...
分类:其他好文   时间:2017-11-25 11:17:49    阅读次数:176
重构手法之Introduce Explaining Variable(引用解释性变量)
返回总目录 6.5Introduce Explaining Variable(引用解释性变量) 概要 你有一个复杂的表达式。 将该复杂表达式(或其中一部分)的结果放进一个临时变量,以此变量名称来解释表达式用途。 动机 有时候你会遇到一系列复杂的表达式连续运算的时候,这个时候你可能根本招架不住如此长或 ...
分类:其他好文   时间:2017-11-19 12:39:29    阅读次数:196
JAVA练习题
package cn.person.www; public class person { public int id; public String name; public int age; public String city; public String introduce() { return ...
分类:编程语言   时间:2017-11-12 20:12:24    阅读次数:215
windows hbase installation
In the previous post, I have introduced how to install hadoop on windows based system. Now, I will introduce how to install hbase on windows. 1. Prepa ...
分类:Windows程序   时间:2017-11-08 20:12:09    阅读次数:209
Java作业七(2017-10-30)
1 /*造人*/ 2 public class Tman { 3 public int id; 4 public String name; 5 public int age; 6 public String city; 7 public String introduce() { 8 return + ...
分类:编程语言   时间:2017-11-07 00:09:08    阅读次数:124
10.23
package tyu; public class Person { public int id; public String name; public int age; public String city; public String introduce() { String songs = n... ...
分类:其他好文   时间:2017-11-06 14:59:09    阅读次数:165
10.29
package zy; public class K { public int id; public String name; public int age; public String city; public String introduce() { return + id + ": 姓名 " ... ...
分类:其他好文   时间:2017-11-06 14:56:41    阅读次数:160
金嘉琪 作业
package cn.person.www; public class person { public int id; public String name; public int age; public String city; public String introduce() { return ...
分类:其他好文   时间:2017-11-06 13:16:07    阅读次数:160
10.23作业 刘惠惠
package cn.person.www; public class Prson { public int id; public String name; public int age; public String city; public String introduce() { return ... ...
分类:其他好文   时间:2017-11-06 13:11:27    阅读次数:188
268条   上一页 1 ... 6 7 8 9 10 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!