上一页 1 2 3 4 5 6 ··· 28 下一页
摘要: /** * Created by ufo9631 on 2017/5/25. */ //一 interface IPerson{ name:string; age:number; } class Person { constructor(public config:IPerson) { } } var p1=new Person({ na... 阅读全文
posted @ 2017-11-15 22:53 编程猴子 阅读(109) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/25. */ //泛型:参数化的类型,一般用来限制集合的内容 /** * Created by ufo9631 on 2017/5/25. */ class Person{ public name; //不指定访问控制符默认是public //类被实例化的时候会被调用 constructor... 阅读全文
posted @ 2017-11-15 22:52 编程猴子 阅读(97) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/25. */ class Person{ public name; //不指定访问控制符默认是public //类被实例化的时候会被调用 constructor(name:string){ //console.log("哈哈"); this.name=name; ... 阅读全文
posted @ 2017-11-15 22:51 编程猴子 阅读(141) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/17. */ var myArr = [1, 2, 3, 4, 5]; myArr.desc = "five number"; myArr.forEach(function (value) { return console.log(value); }); //forEach不能使用break for (var n in m... 阅读全文
posted @ 2017-11-15 22:50 编程猴子 阅读(114) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/17. */ var myArr=[1,2,3,4,5]; myArr.desc="five number"; myArr.forEach(value=>console.log(value)); //forEach不能使用break for(var n in myArr) { console.log(n); } ... 阅读全文
posted @ 2017-11-15 22:50 编程猴子 阅读(107) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/17. */ //箭头表达式 消除javascrpt 带来的this问题 var sum = function (arg1, arg2) { return arg1 + arg2; }; //箭头表达式,声明匿名函数 var sum1 = function (arg1, arg2) { return arg1 + ... 阅读全文
posted @ 2017-11-15 22:49 编程猴子 阅读(143) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/16. */ /*函数新特性*/ function func1() { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i - 0] = arguments[_i]; } args.fo... 阅读全文
posted @ 2017-11-15 22:48 编程猴子 阅读(134) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/16. */ /*参数新特性*/ var maname = "zhang san"; //声明字符串类型变量 var alias = "xixi"; //任意类型 var age = 12; //整形 var man = false; //布尔类型 function test() { } function testStr(... 阅读全文
posted @ 2017-11-15 22:47 编程猴子 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://yuangang.cnblogs.com/ 阅读全文
posted @ 2017-09-28 16:12 编程猴子 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1 drop PROCEDURE IF EXISTS AddIsDoliday ; 2 CREATE PROCEDURE AddIsDoliday() 3 BEGIN 4 IF NOT EXISTS (SELECT * FROM information_schema.columns WHERE table_schema = DATABASE() AND table_name = 't_f... 阅读全文
posted @ 2017-09-23 14:38 编程猴子 阅读(218) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 28 下一页