IT软件开发常用英语词汇
A
abstract 抽象的
abstract base class (ABC)抽象基类
abstract class 抽象类
abstraction 抽象、抽象物、抽象性
access 存取、访问
access function 访问函数
access level访问级别
account 账户
action 动作
activate 激活
...
分类:
其他好文 时间:
2016-07-03 10:33:34
阅读次数:
373
Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the array. Formally the function should: Your algorithm ...
分类:
其他好文 时间:
2016-07-03 08:12:13
阅读次数:
128
题目描述: Write a function to find the longest common prefix string amongst an array of strings. 解题思路: 这道题很简单,分两步: 1. 找出所有字符串中长度最小的那个字符串的值(可能的结果的最大值,保证查找时 ...
分类:
其他好文 时间:
2016-07-03 06:56:52
阅读次数:
150
Coursera公开课笔记: 斯坦福大学机器学习第七课“正则化”
NLPJob
斯坦福大学机器学习第七课”正则化“学习笔记,本次课程主要包括4部分:
1)
The Problem of Overfitting(过拟合问题)
2) Cost Function(成本函数)
3) Regularized Linear Regression(线性回归的正则化...
分类:
其他好文 时间:
2016-07-03 01:50:44
阅读次数:
202
JavaScript Syntax in React Native Contents: Arrow Function Let+Const Default + Rest + Spread Destructuring assignment Computed object property names C ...
分类:
编程语言 时间:
2016-07-03 01:44:10
阅读次数:
634
<script> function GetRandomNum(Min,Max) { var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRand ...
分类:
编程语言 时间:
2016-07-03 00:22:44
阅读次数:
137
$.ajax({type:‘get‘,url:‘json/beautylist.json‘,success:function(data){//封装add函数用以添加数据functionadd(obj,index){for(vari=0;i<data[index].productList.length;i++){obj.append(‘<dl>‘+‘<dt><span></span><ahref="#"><imgsrc=..
分类:
Web程序 时间:
2016-07-02 23:05:38
阅读次数:
2212
关于this对象 在闭包中使用this对象也可能会导致一些问题。this对象是在运行时基于函数的执行环境绑定的:在全局函数中,this等于window, function createFunction(){ alert(this); }; createFunction(); // window 而当 ...
分类:
其他好文 时间:
2016-07-02 22:46:45
阅读次数:
175
CreateFile The CreateFile function creates or opens the following objects and returns a handle that can be used to accessthe object: files pipes mails ...
分类:
其他好文 时间:
2016-07-02 22:46:27
阅读次数:
231
一切皆为对象 殊不知,JavaScript的世界中的对象,追根溯源来自于一个 null 「一切皆为对象」,这句着实是一手好营销,易记,易上口,印象深刻。 万物初生时,一个null对象,凭空而生,接着Object、Function学着null的模样塑造了自己,并且它们彼此之间喜结连理,提供了proto ...
分类:
编程语言 时间:
2016-07-02 22:46:11
阅读次数:
135