本文记录于培训课程。 word order:Refers to the sorting in language units at all levels in the portfolio (1) We are trying our best to win success.陈述句 (2) Who inv ...
分类:
其他好文 时间:
2017-07-20 10:21:15
阅读次数:
151
查找镜像 查找镜像的方法有主要有两种,一种是在Docker Hub官方网站查找,网址为https://hub.docker.com/ 另一种方法是在命令行界面中通过docker serach <image>来查找相关的镜像。 docker search命令说明: docker search [opt ...
分类:
其他好文 时间:
2017-07-19 20:32:48
阅读次数:
312
Java的三大特性:多态、封装、继承。 Java程序设计尊崇的思想:高内聚、低耦合。 多态性:Java官方给出的定义: The dictionary definition of polymorphism refers to a principle in biology in which an org ...
分类:
其他好文 时间:
2017-07-02 15:21:03
阅读次数:
304
ABI定义了如何使用ISA。 ISA定义了机器码的使用规则。 http://www.delorie.com/gnu/docs/gmp/gmp_6.html ABI and ISA ABI (Application Binary Interface) refers to the calling con ...
分类:
其他好文 时间:
2017-05-20 17:17:21
阅读次数:
162
Unsupervised learning refers to data science approaches that involve learning without a prior knowledge about the classification of sample data. In Wi ...
分类:
其他好文 时间:
2017-05-19 11:14:01
阅读次数:
299
一、绑定: 主要包含元素绑定和非元素绑定两种。 1、元素绑定,是绑定的最简单形式,源对象是WPF的元素,并且源对象的属性是依赖项属性。 根据我们之前的知识 ,依赖项属性具有内置的更改通知支持。所以当我们的源对象中改变依赖项属性的值时,会立即更新目标对象中的绑定属性。 以上篇的例子来重写,我们不用额外 ...
分类:
其他好文 时间:
2017-04-30 10:54:44
阅读次数:
343
The method getContextPath() from the type HttpServletRequest refers to the missing type String 今天我将一个项目从另一台机器拷到这台机器,又重新安装了JDK1.6(这台机器上原先的 JDK是1.5的),并配 ...
分类:
Web程序 时间:
2017-04-20 10:41:49
阅读次数:
318
下面是刚开始的webpack的配置文件 var path = require('path');var webpack = require('webpack');var OpenBrowserPlugin = require('open-browser-webpack-plugin');var Htm ...
分类:
其他好文 时间:
2017-03-31 16:40:06
阅读次数:
6489
1.super基本概念 super是个编译器的指令符号,只是告诉编译器在执行的时候,去调谁的方法. self是一个隐私参数; self refers to the object receiving a message in objective-C programming. super 并不是隐藏的参 ...
分类:
其他好文 时间:
2017-03-15 11:53:53
阅读次数:
206
Git撤销修改 撤销修改分为两种情况: 一种是readme.txt自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态; 一种是readme.txt已经添加到暂存区后,又作了修改,现在,撤销修改就回到添加到暂存区后的状态。 总之,就是让这个文件回到最近一次git commit或gi ...
分类:
其他好文 时间:
2017-03-12 19:51:12
阅读次数:
233