上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页
摘要: using System; namespace app{ class MyClass{ public static void Main(string[] args){ B b= new B(); A a= new A(); Console.WriteLine(a.a(13)); ... 阅读全文
posted @ 2019-04-10 16:53 liliyou 阅读(124) 评论(0) 推荐(0)
摘要: using System; namespace app{ class MyClass{ public static void Main(string[] args){ MyClass my = new MyClass(); Console.WriteLine(my.Calc(4)); } int... 阅读全文
posted @ 2019-04-09 22:04 liliyou 阅读(105) 评论(0) 推荐(0)
摘要: ALTER TABLE tb ADD unique (name); 阅读全文
posted @ 2019-03-05 18:00 liliyou 阅读(165) 评论(0) 推荐(0)
摘要: const os = require('os'); console.log(os.homedir()); console.log(os.hostname()); console.log(os.platform()); console.log(os.release()); console.log(os.type()); console.log(os.userInfo()); console.log... 阅读全文
posted @ 2019-03-05 14:08 liliyou 阅读(113) 评论(0) 推荐(0)
摘要: const fs = require('fs'); let readerStream = fs.createReadStream('input.txt'); let writerStream = fs.createWriteStream('output.txt') readerStream.pipe(writerStream); 阅读全文
posted @ 2019-03-05 10:19 liliyou 阅读(140) 评论(0) 推荐(0)
摘要: buffer与对象,数组的互转,字符串作为中间变量 阅读全文
posted @ 2019-03-05 09:58 liliyou 阅读(85) 评论(0) 推荐(0)
摘要: let fs=require('fs'); fs.readFile('input.txt',function(err,data){ if(err){ console.error(err); }else{ console.log(data.toString()); } }); let app={a:' 阅读全文
posted @ 2019-03-03 16:32 liliyou 阅读(99) 评论(0) 推荐(0)
摘要: echo date('l')."\n"; //获取星期天数 echo time();//获取当前时间的时间戳 echo date('d')."\n";//获取日期 echo date('m')."\n";//获取月份 echo date('Y')."\n";//获取年份1 1echo date('l')."\n"; //获取星期天数2echo time();//获取当前时间的时间戳3echo da... 阅读全文
posted @ 2019-02-19 15:09 liliyou 阅读(316) 评论(0) 推荐(0)
摘要: 构造函数 阅读全文
posted @ 2019-02-15 09:32 liliyou 阅读(103) 评论(0) 推荐(0)
摘要: 1.foreach循环 2.for循环 阅读全文
posted @ 2019-02-15 09:30 liliyou 阅读(74) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页