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
返回总目录 本小节目录 Introduce Foreign Method(引入外加函数) Introduce Local Extension(引入本地扩展) Introduce Foreign Method(引入外加函数) Introduce Local Extension(引入本地扩展) 7Int ...
分类:
其他好文 时间:
2017-11-25 11:17:49
阅读次数:
176
返回总目录 6.5Introduce Explaining Variable(引用解释性变量) 概要 你有一个复杂的表达式。 将该复杂表达式(或其中一部分)的结果放进一个临时变量,以此变量名称来解释表达式用途。 动机 有时候你会遇到一系列复杂的表达式连续运算的时候,这个时候你可能根本招架不住如此长或 ...
分类:
其他好文 时间:
2017-11-19 12:39:29
阅读次数:
196
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
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 ...
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
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
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
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