06 2019 档案

摘要:private void button4_Click(object sender, EventArgs e) { FileStream fs = File.OpenRead(textBox1.Text); byte[] buffer = new byte[1024]; int i = fs.Read 阅读全文
posted @ 2019-06-11 17:19 Ericfirst 阅读(492) 评论(0) 推荐(0)
摘要:function A(){ this.do=function() {return 'foo'} } //原型的两种写法01 // A.prototype={ // constructor:A, // do:function() {return 'bar'} // } //原型的两种写法02 A.pr 阅读全文
posted @ 2019-06-09 15:56 Ericfirst 阅读(195) 评论(0) 推荐(0)