English

Microservices 微服务
Distributed Systems 分布式系统
Patterns 模式
Observe 观察
Logic 逻辑
circuit 电路
breaker 断路器
discovery 发现
obtained 获得
archives 档案,归档
cycle 周期,循环
upgrade 升级
summary 概要、摘要
purchase 采购、购买
interview 面试
enhance 加强
location [ ləu’keiʃən] 位置(文件在电脑中的位置)
encoding [in’kəudiŋ] 编码
Folder [‘fəʊldə] 文件夹
cost estimator 成本估算器
standard 标准版
enterprise 企业版
tiers 层级
usage 用法
invoices 发票
specify 指定
tutorial 教程,说明
troubleshooting 故障排除
Launcher 发射器
Placeholder 占位符
Tracing 追踪
Metrics 指标
in depth 深入
Concepts 概念

透视图 perspective figure
内容助理(自动代码提示):设置快捷键 General–>keys–>content assist
内省—->IntroSpector
Properties [ ‘prɔpətis] 属性,性能
View [ vju: ] 视图, 视线,看
Show view 显示视图
Refresh [ri’freʃ] 更新,刷新
Edit [‘edit] 编辑
Project [prədʒekt] 项目,工程,计划
Preference [‘prefə rəns] 个人喜好/在汉化版中是”属性”
rename [,ri:’neim] 改名,重新命名 (F2 快捷键)
template [‘templit] 模板
console [kən’səul] 控制台
font [fɔnt] 字体
syntax [‘sintæks] 语法
bracket [‘brækit] 括号
keyword [‘ki:wə:d] 关键字
excluding [ik’sklu:diŋ] 将…排除在外

1–Java中的23种设计模式
1.Factory(工厂模式)
2.Builder(建造模式)
3.Factory Method(工厂方法模式)
4.Prototype(原始模型模式)
5.Singleton(单例模式)
6.Facade(门面模式)
7.Adapter(适配器模式)
8.Bridge(桥梁模式)
9.Composite(合成模式)
10.Decorator(装饰模式)
11.Flyweight(享元模式)
12.Proxy(代理模式)
13.Command(命令模式)
14.Interpreter(解释器模式)
15.Visitor(访问者模式)
16.Iterator(迭代子模式)
17.Mediator(调停者模式)
18.Memento(备忘录模式)
19.Observer(观察者模式)
20.State(状态模式)
21.Strategy(策略模式)
22.Template Method(模板方法模式)
23.Chain Of Responsibleity(责任链模式)

4–J2EE的核心技术

JDBC(Java Database Connectivity)
JNDI(Java Name and Directory Interface)
EJB(Enterprise JavaBean)
RMI(Remote Method Invoke)
Java IDL/CORBA
JSP(Java Server Pages)
Java Servlet
XML(Extensible Markup Language)
JMS(Java Message Service)
JTA(Java Transaction Architecture)
JTS(Java Transaction Service):
JavaMail
JAF(JavaBeans Activation Framework)

OSS
Object Storage Service静态存储

ECS
云服务器(Elastic Compute Service)

SLB
服务器负载均衡(Server Load Balancing)

RDS
关系型数据库服务(Relational Database Service)
AWT
抽象窗口工具集(Abstract Window Toolkit)
IFC
(Internet Foundation Classes)
GUI
Graphical User Interface(图形用户接口)(图形用户界面)
CLI
Command line User Interface (命令行用户接口
JFC
Swing。AWT、Swing、辅助功能API、2DAPI以及拖放API共同组成JFC(Java Foundation Classes)
JAVA EE
全称 java platform enterprise edition java企业级平台 适用于创建服务器应用程序和服务的Java 2平台企业版(Java2 Platform Enterprise Edition,Java EE)

JAVA SE
适用于桌面系统的Java 2平台标准版(Java2 Platform Standard Edition,Java SE)

JAVA ME
适用于小型设备和智能卡的Java2平台Micro版(Java2 Platform Micro Edition,J avaME)

IT
information technology

IDE
itegrity development environment

API
(Application Programming Interface,应用程序编程接口)是一些预先定义的函数,目的是提供应用程序与开发人员基于某软件或硬件得以访问一组例程的能力,而又无需访问源码,或理解内部工作机制的细节。
JMS
JMX
JNDI
AOP
Aspect oriented program ,简称AOP 面向切面
http:hypertext transfer protocol

SQL
(Structured Query Language)结构化查询语言是IBM公司San Jose实验室为System R而设计的查询语言,后被国际标准化组织(ISO)批准作为关系数据库语言的国际标准。

SUN
(Stanford University Network,斯坦福大学网络公司)
JVM
Java Virtual Machine

GC
垃圾回收机制(Garbage Collection,也被称为GC)
DAO
data access object 数据访问

CRUD
create read update delete增删改查
MVC
Struts
ORM
Hibernate
IOC
Spring(Inversion of Control)
DML
数据操纵语言(Data Manipulation Language DML)语句
用于修改表的内容
INSERT 添加行
UPDATE 修改行内容
DELETE 删除行
DDL
数据定义语言(Data Definition Language,DDL)语句
用于定义构成数据库的数据结构
CREATE 创建数据库结构
ALTER 修改数据库结构
DROP 删除数据库结构
RENAME 更改表名
TRUNCATE 删除表的全部内容
TCL
事务控制(Transaction Control TC)语句
用于将对行做的修改永久性存储到表中
COMMIT 永久性的保存对行做的修改
ROLLBACK 取消对行做的修改
SAVEPOINT 设置保存点
DCL
数据控制语言(Data Control Language DCL)语句
GRANT 授予其他用户对数据库访问权限
REVOKE 防止其他用户访问数据结构
JDBC
全称Java Database Connectivity 即java数据库连接
ODBC
全称 Open Database Connectivity 开放数据库连接
POJOs
Plan Old Java Objects,普通的Java对象

POJO(plain old java object):普通的java对象,有别于特殊的java对象(含继承约束等)和EJB。POJO一般只有一系列的属性和相应的get、set方法。
PO(persistant object):持久化对象,有别于POJO,必须对应数据库中的实体。一个PO对应数据库的一条记录。持久化对象的生命周期与数据库密切相关,只能存在于connection之中,连接关闭后,PO就消失了。 PO相对于POJO有诸多不同,比如PO中会有保存数据库entity状态的属性和方法。但是ORM(object-relation mapping)追求的目标是PO和POJO的一致,所以在程序员的日常开发中,都是将POJO作为PO使用,而将POJO转化为PO的功能交给hibernate等框架来实现。

DTO(data transfer object):数据传输对象,以前被称为值对象(VO,value object),作用仅在于在应用程序的各个子系统间传输数据,在表现层展示。与POJO对应一个数据库实体不同,DTO并不对应一个实体,可能仅存储实体的部分属性或加入符合传输需求的其他的属性。
DAO(data access object):数据访问对象。提供访问数据库的抽象接口,或者持久化机制,而不暴露数据库的内部详细信息。DAO提供从程序调用到持久层的匹配。
BO(business object):业务对象。主要是将业务逻辑封装为一个对象,该对象可以包含一个或多个其他对象。如,”Principal”(委托人),有”Name”,”Age”等属性,同时和”Employee”(雇员)有1对多的关系,这个”Principal”就可以作为一个与业务相关的PO。

代理 —->Proxy
封装—->encapsulation
多态—->polymiorphism (polymorphism 多形性[,p.li’m.:fizm])
extends (关键字) 继承、扩展 [ik’stend]
default (关键字) 默认值 ; 缺省值 [di’f.:lt]
delimiter 定义符; 定界符
Encapsulation [java]封装 (hiding implementation details)
Exception [java]例外; 异常 [ik’sep..n]
entry n.登录项, 输入项, 条目[‘entri]
enum (关键字) 枚举
execute vt.执行 [‘eksikju:t]
exhibit v.显示, 陈列 [ig’zibit]
exist 存在, 发生 [ig’zist] ‘(SQL 关键字exists)
fragments 段落; 代码块 [‘fr.gm.nt]
FrameWork [java]结构,框架 [‘freimw.:k]
Generic [java]泛型 [d.i’nerik]
goto (保留字) 跳转
heap n.堆 [hi:p]
stack n.堆栈 [st.k] (对应heap堆)
implements (关键字) 实现 [‘implim.nt]
import (关键字) 引入(进口,输入)
Info (information [,inf.’mei..n] ) n.信息
Inheritance [java]继承 [in’herit.ns] (遗传,遗产)
initialize 预置初始化 [i’ni..laiz]
instanceof (关键字) 运算符,用于引用变量,以检查这个对象是否是某种类型。返回 boolean值。
interface (关键字) 接口 [‘int.feis]
invoke vt.调用 [in’v.uk]’ ( invocation [,inv.u’kei..n])
Iterator [java]迭代器, 迭代程序
legal 合法的 [‘li:g.l]
log n. 日志,记录 [l.g]
native (关键字) [‘neitiv]
nested [java]嵌套的 [‘nestid] ‘如:内部类(nested classes)
abstract (关键字) 抽象 [‘.bstr.kt]
access vt.访问,存取 [‘.kses]’(n.入口,使用权)
algorithm n.算法 [‘.lg.riem]
annotation [java]代码注释 [.n.u’tei..n]
anonymous adj.匿名的[.’n.nim.s]’
(反义:directly adv.直接地,立即[di’rektli, dai’rektli])
apply v.应用,适用 [.’plai]
application n. 应用, 应用程序 [,.pli’kei..n]’
(application crash 程序崩溃)
arbitrary a.任意的 [‘ɑ:bitr.ri]
argument n.参数;争论,论据 [‘ɑ:gjum.nt]’(缩写args)
assert (关键字) 断言 [.’s.:t] ‘ (java 1.4 之后成为关键字)
associate n.关联(同伴,伙伴) [.’s.u.ieit]
attribute n.属性(品质,特征) [.’tribju:t]
boolean (关键字) 逻辑的, 布尔型
call n.v.调用; 呼叫; [k.:l]
circumstance n.事件(环境,状况) [‘s.:k.mst.ns]
crash n.崩溃,破碎 [kr..]
cohesion 内聚,黏聚,结合 [k.u’hi:..n]
a class is designed with a single, well-focoused purpose. 应该不止这点
command n. 命令,指令 k.’mɑ:nd
command-line 命令行
comments [java]文本注释 [‘k.ments]
compile [java] v.编译 [k.m’pail]’
compilation n.编辑[,k.mpi’lei..n]
const (保留字)
constant n. 常量, 常数, 恒量 [‘k.nst.nt]
continue (关键字)
coupling 耦合,联结 [‘k.pli.]
making sure that classes know about other classes only through their APIs.
declare [java]声明 [di’kl..]
Overload [java]方法的重载(不同参数列表的同名方法) [,.uv.’l.ud]
Override [java]方法的覆盖(覆盖父类的方法) [,.uv.’raid]
allowing a single object to be seen as having many types.
principle n.原则,原理,主义 [‘prinsipl]
priority n. 优先级 [prai’.riti]
process n. 程序, 进程 [‘pr.ses]
protected (关键字) 受保护的,私有的 [pr.’tektid]
provide v.规定(供应,准备,预防)[pr.’vaid]
refer to v.引用 [ri’f.:][tu:]
reference n. 参考(引用,涉及)[‘ref.r.ns]’
-reference variable 参量, 参考变量,引用变量
reflection [java]反射 [ri’flek..n]
script n.手写体,小型程序 [skript]
serialized vt.序列化,串行化 [‘si.ri.laiz]’
(serializable adj.)(deserialize 反序列化,反串行化)
socket [java]网络套接字[‘s.kit]
statement 程序语句; 语句 [‘steitm.nt]’ n. 陈述,指令
subclass n.子类 [‘s.bklɑ:s]’ (supertype 父类)
switch (关键字) 选择语句。 n.开关,道岔 [swɪtʃ]
synchronized (关键字) 同步(锁) [‘si.kr.naiz]
Thread [java]线程 [θred]
throw (关键字) throws (关键字) [θr.u] 抛出(异常)
transient (关键字) 瞬变;临时的[‘tr.nzi.nt]’(可序列化)
valid 正确的,有效的 [‘v.lid]
variable n.变量 a.可变的[‘v..ri.bl]
volatile (关键字) 不稳定的[‘v.l.tail]
while (关键字) 循环语句。当…的时候 [hwail]

java 常用单词以及它的用法

lang 包:

字符串类的方法:

character 类:

isLetter():判断是不是字母

isDigit():判断是不是数字

isWhiteSpace():判断是不是空格

isUpperCase():判断是不是大写

isLowerCase():判断是不是小写

String 类:

equals():比较对象中值是否相等

length():返回字符串长度

CompareTo():比较相同索引位置上字符的ASCII

StartsWith():判断是否以…开头

endsWith():判断是否以…结尾

toUpperCase():将所有小写转为大写

toLowerCase():将所有大些转为小写

trim():截掉空格

indexOf():搜索某个字符在字符串中是否存在

LastIndexOf():从后往前搜索第一次遇到字符的索引

CharAt:根据下标找字符

subString:截取

concat:连结

StringBuffer 类:

append():追加

setcharAt():将下表对应的字符更改为某个字符

insert():插入字符

reverse():倒置,反置

replace():替换

toString():返回当前对象的字符串表现形式

Math 类:

static:静态

Class 类:

getClass():获得类的描述信息

getSuperClass():获得父类的描述信息

forName():java 与 sql 建立连接时使用

util 包:

Calendar 类:日历类

Calendar.getInstance();获得该类的实例

Date:日期

Date.gettime();获得毫秒数

get():获得时间组成部分

add():加上时间组成部分

set():修改时间组成部分

DAY_OF_YEAR 这一年的第几天

DAY_OF_MONTH 这一月的第几天

DAY_OF_WEEK 这一周的第几天

Random 类:

Rand.nextInt 随机数

框架集合:

ArrayList:查询数据比较多时用该类

size():测试容量

get():获得集合框架中的数据

add():向集合框架中添加数据

set():修改集合框架中的数据

isEmpty():判断集合框架是否为空

indexof():搜索内容

remove():删除

clear():清空

LinkedList:当插入修改数据情况多时用该类

removeFirst():删除第一个元素

removeLast():删除最后一个元素

addFirst():添加第一个元素

addLast():添加最后一个元素

Vector 类

addElement():添加

removeElement():删除

Hashmap 类

put():添加方法

get():查询数据

remove():删除数据

IO 包

length():测试文件容量

exists():判断文件是否存在

CreateNewFile():创建新文件

delete():删除原文件

getAbsolutePath():获得文件的绝对路径

FileOutputStream():输出流

FileInputStream():输入流

字符流:

FileReader:读文件

FileWriter:写文件

BufferedReader:缓冲读取流

readline():读取一行内容

BufferedReader 字符串读取的缓冲流

write():写

newLine():换行

System.in 的read 方法,可以从控制台接受输入:

InputStreamReader() 配合 BufferedReader()使用

SQL 包

Java 与 SQL server 2005 连接

六个步骤:

//建立数据源

//加载驱动程序

Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”);

//建立连接

Connection

con=java.sql.DriverManager.getConnection(“jdbc:\jdbc:myODBC”,”sa”,

“”);

//创建语句对象

Statement sta=con.createStatement();

//执行

SQL 语句

String strsql=”Update teacher set address=’地名’ where name=’姓名’”;

int count= sta.executeUpdate(strsql);

System.out.println (“更新了”+count+”行记录”);

//关闭连接

sta.close();

con.close();

捕捉异常

catch(ClassNotFoundException cnfe) {

cnfe.printStackTrace();

}

catch(SQLException sqle) {

sqle.printStackTrace();

}

预编译语句对象:**preparedStatement**

path [ pɑ: θ] 路径

class [klɑ:s] 类

classpath [klɑ:s’pɑ: θ] 类路径

public [‘p ʌblik] 公共的,公用的

private [‘praivit] 私有的,私人的

static [‘stæ tik] 静的;静态的;静止的

void [vɔid] 空的,没有返回值的

main [mein] 主要的,重要的

System [‘sistəm] 系统,方法

out [aut] 往外,出现,出外

print [print ] 打印

Demo [ ‘deməu ] 演示

version [ ‘və:ʃən] 版本

author [ ‘ɔ:θə ] 作者

byte [bait] 字节

short [ʃɔ :t] 短整型

int [int] 整型

long [lɔ:ŋ] 长整形

char [tʃɑ:] 字符型

String [striŋ] 字符串类型

float [fləut] 单精度浮点类型

double [‘dʌbl] 双精度浮点型,双倍

type [taip] 类型

boolean [‘bu:li:ən] 布尔类型真假二值

true [tru:] 真,正确的(成立的)

false [fɔ:ls] 假,错误的(不成立的)

binary [‘bainəri] 二进制

octal [‘ɔktəl] 八进制

hex [heks] 十六进制

count [kaunt] 计数;计算;

sum [ s ʌm] 总数,总计

salary [ ‘sæləri ] 薪水

Random [‘ræn dəm] 随机的

Scanner [‘skænə] 接收输入

import [im’ pɔ:t] 导入,输入

if [if] 如果

else [els] 否则

switch [switʃ] 判断语句

case [keis] 实例,情况

break [breik] 退出

continue [kən ‘tinju] 跳出…继续

return [ri tə:n] 返回

default [di’fɔ:lt]或者的意思(在软件配置中还有默认的意思)

while [wail] 当……的时候

loop [lu:p] 循环

Max [ ma: k s] 最大的

Min [ mi n] 最小的

Function [ ‘fʌŋ k ʃən ] 功能,函数

Method [ ‘me θə d ] 方法

result [ ri’zʌlt ]结果

Compare [ kəm’ pεə ] 比较

temp [ tem p ] 临时

Array [ ə’rei ] 数组

null [nʌl ] 空,无效的

pointer [‘p ɔi n tə] 指针

Exception [ ik ‘sepʃən] 异常

Error [ erə ] 错误

Thread [ θred ] 线程,线状物

Lang [læŋ] language[‘læŋɡ wi dʒ] 语言的缩写

index [‘indeks] 角标,索引,指针

Outof [ a:ut ɔf] 在…之外

bound [baund] 范围

length [ leŋθ] 长度

sort [sɔ:t] 将…排序//Arrays.sort(arr)

select [si’lekt] 选择 //selectSort

bubble [‘bʌbl] 冒泡,气泡 //bullbeSort

change [ tʃeindʒ ] 改变,交换

swap [ swɔp ] 交换

nullpointerException 空指针异常

ArrayIndexOutOfBoundsException 数组角标越界异常

half [ hɑ:f ] 一半的,半个的

search [ sə: tʃ] 搜索,查找

mid [ mid] 中间的

number [ ‘nʌmbə ] 数字,号码

util [ ju’til]是utility[ ju’tiliti ]功能,功效 的缩写

Transition [ træn’ziʃən] 转换 通常会用trans 为其简写形式

Object [ ‘ɔb dʒi kt ] 对象, 物体

Class member [ ‘membə ] 类成员

Class method [ ‘meθəd] ] 类方法

Class variable [ ‘vεə riə ble ] 类变量

Constructor [ kən’strʌktə ] 构造方法,构造器

package [ ‘pækidʒ] 包

Car [ kɑ: ] 汽车,小轿车

Color [ ‘kʌlə] 颜色

Red [ red ] 红色

Blue [ blu: ]蓝色

Black [ blæ k] 黑色

White [ hwait ] 白色

run [ run] 跑, 运行

Person [ ‘pə:sən ] 人

People [ ‘pi:pl ] 人,人们

Age [ eidʒ] 年龄

Name [ neim ] 名字,名称,名誉,名人

Speak [ spi:k] 说话,讲话,

set [ set] 设置

reset [r i set] 重新设置

get [get ] 获取,获得

code [ kəud ] 代码,代号,编码

country [ ‘kʌn tri ] 国家,国土

University [ju:ni’və:siti] 大学

College [ ‘kɔlidʒ] 大学

Private [ ‘praivit ] 私有的,私人的

show [ʃəu] 显示,展示

sleep [ sli:p ] 睡, 睡觉, 睡眠 1 秒=1000 毫秒

single [ ‘siŋgl] 单一的,单独的,单身的,单程的

instance [ ‘instəns ]实例,情况

tool [ tu:l] 工具

Data [ ‘deitə ] 资料

develop [ di’veləp ] 开发

extends [ ik’stends] 继承,延伸,推广

Phone [ fəun ] 电话

Call [ kɔ:l] 呼叫,给…打电话

Study [ ‘stʌdi] 学习,研究

work [ wə:k ] 工作,操作

super [‘sju: pə] 父类的,超级的,,超类的

final [‘fai nl] 最终的

finally

finalized

abstract [‘æbstrækt] 抽象的

interface [ ‘intəfeis ] 接口

implements [‘impliments] 实现

mouse [maus ] 鼠标, 老鼠

bonus [ ‘bəunəs ] 奖金

inner [ ‘inə ] 内部的

protect [prəu’tekt] 保护,受保护的, 防卫

equals [‘i:kwəls]判断两个字符串是否相等

memory [‘meməri] 记忆,内存,存储器

OutOfMemoryError 在内存之外的错误:内存溢出(专业说法)

heap [hi:p] 堆

space [speis] 空间

Java heap space Java 堆内存

Throw [θrəu] 抛出,投掷

Throws [θrəuz] throw 的复数形式

finally [‘fainəli] 最后,最终

Message [‘mesidʒ] 消息,信息,通知

try [trai] 尝试,试图

catch [kætʃ] 捕获,捕捉,抓住

close [kləuz] 关闭,结束

open [‘əupən] 打开,公开

add [æd] 添加,增加

prelect [pri’lekt ] 讲课,讲演

directory [ di’rektəri ] 目录

throwable [ ‘θrəuə’ei bl ] 直译是可抛出的,在Java 中指异常类.

ClassCastException (“类型错误”),类型转换异常

Runtime [run’taim] 运行时间

RuntimeException 运行时异常

Current [‘kʌrənt] 当前的,现在的

Arithmetic [ə’riθmətik ] 算数

synchronized [ ‘sɪŋkrə,naɪzd] 同步的

Runnable [ ‘rʌnəbl] 可捕捉的(在java 中它是一个接口)

Inter rupted [,intə’rʌptid] 中断的,被阻止的

Ticket [‘tikit] 票

Bank [bæŋk] 银行

tank 坦克

flag [flæɡ] 标记, 旗帜

dead [ded] 死亡的,无生命的

lock [ lɔk] 锁

unlock

Resource [ ri’sɔ:s] 资源

Notify [‘nəutifai ] 唤醒, 告知

Input [‘input] 输入

Output [ ‘autput ] 输出

bounded [‘baundid] 有界限的

Buffer [‘bʌfə] 缓冲区

boundedbuffer 有界缓冲区

Signal [‘siɡ nəl] 信号,标志

Condition [kən’diʃən] 条件

Producer [prə’du:sə] 生产者

Consumer [ kən’sju:mə ] 消费者

substring [ ‘sʌb striŋ] 子字符串, 部分字符串,子链

Trim [trim] 修剪, 修整

Append [ə’pend] 添加

Add [ æd] 增加

Insert [in’sə:t] 插入, 比如把一段字符串”cd” 插入到 “abef”

Delete [di’li:t] 删除

remove

replace [ri’pleis] 代替,取代,更换

update [ ʌp’deit] 更新

Create [ kri’eit ] 创造,创作

Builder [‘bildə] Java 中为 “缓冲器”, 直译为建筑者

StringBuffer 字符串缓冲区(同步的)

StringBuilder 字符串缓冲区(不同步的)

char [tʃɑ:] 字符型

character [‘kærəktə] 字符

int [int] 整型

integer [‘intidʒə] 整数类型

parse [pɑ:z] 解析, 转换成…

parseInt 转换为int 类型

Retain [ri’tein] 保持

reverse [ ri’və:s ] 反转,翻转

collection [kə’lekʃən] 集合,聚集,采集

Remove [ri’mu:v] 移除,删除

clear [kliə] 清空,清除,清楚的.

Iterator [itə’rei tə] 迭代器

list [list] 列表,清单(集合之一)

ArrayList [‘əri list] 数组列表(最常用的集合,重点掌握)

HasPrevious [‘pri:vjəs] 在…之前

HasNext

Split [split] 切割

Element [‘elimənt] 元素

NoSuchElementException

linked [ liŋkt] 连接的

contains [kən’teinz] 包含

Set [ set] 集合

Comparator [‘kəmpə reitə] 比较仪

style [stail] 风格,类型

math [mæ θ] 数学,算数

ceil() [ si:l] 返回大于参数的最小整数。

floor() [flɔ:] 返回小于参数的最大整数。

round() [raund] 返回四舍五入的整数。

pow(a,b) [ p a u]a 的b 次方。

execute [‘eksikju:t] 执行

process [‘prəuses] 处理,加工

Notepad [‘nəutpæd] 笔记本

destroy [di’strɔi] 消毁, 破坏,消灭

Separator [‘sepə reitə] 分隔符,分离器

Generic [dʒi’nerik] 类的,一般的

vector [‘vektə] 也是一个集合(早期的一个集合现在几乎不

用了)

value [‘vælju:] 值,价值

Calendar [‘kæ lən dɚ] 日历, 日历表,历法

Day [dei] 一天, 每天

Week [wi:k] 周,星期

Month [ mʌnθ] 月

Year [jiə] 年

format [‘fɔ:mæt] 格式,样式

ParseException 解析异常

stack [stæk] 堆

trace [treis] 痕迹

printStackTrace

by [bai] 通过,按照

order [‘ɔ:də] 顺序,规则

byOrder

line [lain] 一行

readLine() 读取一行

stream [stri:m] 流 (生活中常见的流有: 水流,电流,数据流)

flush [flʌʃ]清空缓冲区数据,然后缓冲区的数据就去了它们

filter [filtə]过滤器

Absolute [‘æbsəlju:t] 绝对的

hidden [‘hidən] 隐藏的

Suffix [sə’fiks] 后缀的

level [‘levəl] 标准,水平的

store [stɔ:] 储存

accept [ək’sept] 接受,承认,同意

sequence [‘si:kwəns] 序列

Enumeration [i,nju:mə’reiʃən] 枚举,列举

merge [mə:dʒ] 合并

access [‘ækses] 使用

Un supported [,ʌnsə’pɔ:tid] 不支持的

Unsupported Encoding Exception

compare [kəm’pεə] 比较

comparable [‘kɔm pə rəbl] 可以比较的

field [‘fi:ld] 字段

button [‘bʌtən] 按钮

frame [freim] 框架,结构

action [‘ækʃən] 行动,动作

event [i’vent] 事件,

visible [‘vizəbl] 看的见的,可见的

menu [‘menju:] 菜单

area [‘εə r iə] 区域,地区

item [‘aitəm] 条目,项目

Scroll [sk r əul] 卷轴,滚动

pane [pein] 窗格

ScrollPane 滚动窗口 ;滚动面板

Content [‘kɔntent] 内容

Context

choose [tʃu:z] 选择

dialog [‘daiəlɔg] 对话,会话

Relative [ ‘relətiv ] 相对的

Init [ i,nit ] 初始化

Initialization [ i,niʃəl’zeiʃən] 初始化

perform [pə’fɔ:m] 执行,运转

Port [ pɔ:t ] (计算机的)端口

Viewport [ ‘vju:pɔ:t ] 视口

pressed [prest] 紧迫的, 加压的

display [,dis’plei] 显示; 表现

dispose [dis’pəuz] 处理,安排

Operator [‘ɔpəreitə] 操作员

operation [,ɔpə’reiʃən] 操作(动词)

host [həust] 主机,主人

address [ə’dres] 地址

HostAddress

receive [ri’si:v] 接收

send [send] 发送

client [‘klaiənt] 客户

Server [‘sə:və] 服务器

log [lɔ’gin] 注册
register [‘redʒistə] 登录
upload [ ‘ʌpləud] 上传

Download [daun’ləud] 下载

Task [tɑ:sk] 任务

Browse [brauz] 浏览

Browser [ brawə:] 浏览器

connection [kə’nekʃən] 连接

layout [‘leiaut] 布局

Terminate [ ‘tə:mineit ] 结束

Instantiation [in,stænʃi’eiʃən] 实例化

Instance

declared [di’klεəd] 公然的

Access [ ək’ses ] 进入,接近,入口,通道

Accessible [ək’sesəbl] 可进入的

invoke [in’vəuk] 调用

board [bɔ:d] 木板, 甲板

MainBoard

card [kɑ:d] 卡片

Network card

match [mætʃ] 匹配

matcher [‘mætʃə] 匹配器

pattern [‘pætən] 模式,图案

Regex [ ri’dʒeks ] 正则表达式

title [‘taitl] 标题

untitled [,ʌn’taitld] 无标题的

Charset [ tʃɑ: set ] 字符集,编码集

Encoding

Rows [rəus ] 多行,

Cols [ kɔls] 列数

Top [ tɔp] 顶部,顶端

center [‘sentə] 中心, 中央

target [‘tɑ:ɡit] 目标

document [‘dɔkjumənt] 文件

table [‘teibl] 表格,桌子

span [spæn] 跨度,范围

User [‘juzə] 用户

password [‘pɑ:swə:d ] 密码

Radio [ ‘reidiəu ] 单选框

Checkbox [ ‘tʃekbɔks ] 复选框

image [‘imidʒ] 图像,影像

none [nʌn] 没有

option [‘ɔpʃən] 选项

Form [ fɔ;m] 结构,形式

Height [hait] 高度

Width [wi θ] 宽度

border [‘bɔ:də] 边框宽度

alert [ə’lə:t] 警告,弹出

Onclick [ ɔn’klik] 鼠标单击

reset [ ‘ri:set] 重置,清零

submit [səb’mit] 提交

Stylesheet [stail’ʃ :t] 样式表

Background [‘bækɡraʊnd] 背景

decoration [,dekə’reiʃən] 装饰,装潢

Hover [‘hɔvə, ‘hʌvə] 鼠标移动到链接上

Active [‘æktiv] 选定的链接

Visit ed [‘vi zi tid] 已访问的链接

Link [liŋk] 未访问的链接

Letter [‘le tə]

Focus [‘fəukəs] 焦点,中心

blank [blæŋk] 空白的

Bottom [‘bɔtəm] 底部,末端

Botton

Pad ding [ pæd iŋ ]

Solid [‘sɔlid] 实线边框

Dashed [dæʃt] 在MAC 平台上IE4+与WINDOWS 和UNIX

平台上IE5.5+为虚线。否则为实线

Groove [ɡru:v] 凹槽

Dotted [‘dɔtid] 在 MAC平台上 IE4+与 WINDOWS和UNIX 平台上IE5.5+为点线。否则为实线

Position [pə’zɪʃən] 位置

Var [vɑ:] 在Script 中用来定义变量类型的单词

undefined [,ʌndi’faind] 未定义的,不明确的

global [‘ɡləubəl] 全局的, 总体的

Generate [ dʒnəreit] 生成

Modified [ ‘mɔdi faid] 改进的,改良的

其他

阶乘 factorial

控制语句 control statement

闰年 leap year

循环 Circulation

乘法表 MultiplicationTable

运算符**(operator)**

加法:addition

减法:subtraction

乘法:multiplication

除法:division

取余:complementation

组件:Component

菜单组件:MenuComponent

矩形:rectangle

长方形:square

圆形:circularity

734条高频词组笔记

1.abide by(=be faithful to ; obey)忠于;遵守。??

\2. be absent from⋯. 缺席,不在??

\3. absence or mind(=being absent-minded) 心不在焉??

\4. absorb(=take up the attention of)吸引⋯的注意力(被动语态)be absorbed in 全神贯注于⋯?? 近义:be engrossed ; be lost in ; be rapt in ;be concentrated on??; be focused on ; be centered on??

\5. (be) abundant in(be rich in; be well supplied with) 富于,富有???? 6. access(to) (不可数名词) 能接近,进入,了解??

\7. by accident(=by chance, accidentally)偶然地,意外. Without accident(=safely) 安全地,??

\8. of one’s own accord(=without being asked; willingly; freely)自愿地 ,主 动地??

\9. in accord with 与⋯一致 . out of one’s accord with 同⋯.不一致??

\10. with one accord (=with everybody agreeing)一致地??

\11. in accordance with (=in agreement with) 依照,根据??

\12. on one’s own account??1) 为了某人的缘故, 为了某人自己的利益??2) (=at one’s own risk) 自行负责??3) (=by oneself)依靠自己??on account 赊账; on account of 因为; on no account不论什么原因也不;of ⋯account 有⋯..重要性.??

\13. take⋯into account(=consider)把…考虑进去??

\14. give sb. an account of 说明, 解释 (理由)??

\15. account for (=give an explanation or reason for) 解释, 说明.??

\16. on account of (=because of) 由于,因为.??

\17. on no account(=in no case, for no reason)绝不要,无论如何不要(放句首时句 子要倒装)??

\18. accuse⋯of⋯(=charge⋯with; blame sb. for sth. ; blame sth. on sb. ; complain about) 指控,控告??

\19. be accustomed to (=be in the habit of, be used to)习惯于.??

\20. be acquainted with(=to have knowledge of) 了解; (=to have met socially??) 熟悉??

\21. act on 奉行,按照⋯行动; act as 扮演; act for 代理??

\22. adapt oneself to(=adjust oneself to) 使自己适应于??

\23. adapt⋯(for) (=make sth. Suitable for a new need) 改编, 改写(以适应新的需要)??

\24. in addition (=besides) 此外, 又, 加之??

\25. in addition to(=as well as, besides, other than)除⋯外??

\26. adhere to (=abide by, conform to, comply with, cling to, insist on, pe rsist in, observe, opinion, belief ) 粘附; 坚持, 遵循??

\27. adjacent(=next to, close to) 毗邻的, 临近的??

\28. adjust..(to) (=change slightly)调节; 适应;??

\29. admit of (=be capable of, leave room for) ⋯的可能,留有⋯的余地.??

\30. in advance (before in time) 预告, 事先.??

\31. to advantage 有利的,使优点更加突出地.??

\32. have an advantage over 胜过.??have the advantage of 由于⋯处于有利条件??have the advantage of sb.知道某人所不知道的事??

\33. take advantage of (=make the best of, utilize, make use of, profit from, harness)利用.??

\34. agree with 赞同(某人意见) agree to 同意??

\35. in agreement (with) 同意, 一致??

\36. ahead of 在⋯之前, 超过⋯;⋯⋯⋯⋯⋯. ahead of time 提前.??

\37. in the air 1)不肯定, 不具体. 2)在谣传中.??

\38. above all (=especially, most important of all) 尤其是, 最重要的.??

\39. in all (=counting everyone or everything, altogether) 总共, 总计??

\40. after all 毕竟,到底; (not) at all 一点也不;??all at once(=suddenly)突然; once and for all 只此一次; above all 最重要的; first of all 首先; all in all 大体上说; be all in 累极了; all but 几乎.??

\41. allow for (=take into consideration, take into account) 考虑到, 估计到??.??

\42. amount to (=to be equal to) 总计, 等于.??

\43. answer for (undertake responsibility for, be liable for, take charge for) 对⋯负责.??

\44. answer to (=conform to) 适合,符合.??

\45. be anxious about 为⋯焦急不安; 或anxious for??

\46. apologize to sb. for sth. 为⋯向⋯道歉??

\47. appeal to sb. for sth. 为某事向某人呼吁. appeal to sb. 对某人有吸引力??

\48. apply to sb. for sth. 为⋯向⋯申请 ; apply for申请; apply to 适用.??

\49. apply to 与⋯有关;适用??

\50. approve of (=consent to, be in favor of, favor, agree to, consider good, right) 赞成, approve vt. 批准??

\51. arise from(=be caused by) 由⋯引起.??

\52. arrange for sb.sth. to do sth. 安排⋯做⋯??

\53. arrive on 到达; arrive at 到达某地(小地方);得出,作出; arrive in 到达某地(大地方);??

\54. be ashamed of (=feel shame, guilt or sorrow because of sth. done) 以⋯??为羞耻??

\55. assure sb. of sth. (=try to cause to believe or trust in sth.) 向⋯保证, 使⋯确信.??

\56. attach(to) (=to fix, fasten; join) 缚, 系 ,结??

\57. make an attempt at doing sth. (to do sth.) 试图做⋯??

\58. attend to (=give one’s attention, care and thought)注意,照顾;attend on(upon)(=wait upon, serve, look after) 侍候,照料??

\59. attitude to toward ⋯对⋯的态度.看法??

\60. attribute⋯to⋯(=to believe sth. to be the result of⋯)把..归因于.., 认为..是..的结果??

\61. on the average (=on average, on an average) 平均??

\62. (be) aware of (=be conscious of , having knowledge or consciousness)意识到,知道.??

\63. at the back of (=behind) 在⋯后面??

\64. in the back of 在⋯后部(里面); on the back of 在⋯后部(外面); be on one’s back(=be ill in bed) 卧病不起.??

\65. at one’s back(=supporting or favoring sb.) 支持,维护; have sb. at one ’s back 有⋯支持, 有⋯作后台??

\66. turn one’s back on sb. (=turn away from sb. in an impolite way) 不理睬(某人),背弃,抛弃??

\67. behind one’s back 背着某人(说坏话)??

\68. be based on??upon 基于??

\69. on the basis of 根据⋯, 在⋯基础上??

\70. beat⋯at 在⋯运动项目上打赢??

\71. begin with 以⋯开始. to begin with (=first of all) 首先, 第一(经常用于开始语)??

\72. on behalf of (=as the representative of) 以⋯名义??

\73. believe in(=have faith or trust in; consider sth.sb. to be true) 相信,依赖,信仰.??

\74. benefit (from) 受益,得到好处.??

\75. for the benefit of 为了⋯的利益(好处)??

\76. for the better 好转??

\77. get the better of (=defeat sb.) 打败, 胜过.??

\78. by birth 在出生上,论出身,按血统 at birth 在出生时; give birth to 出生??

\79. blame sb. for sth. 因⋯责备某人 . blame sth. on sb. 把⋯推在某人身上??

\80. in blossom开花(指树木) be in blossom开花(强调状态) come into blossom开花(强调动作)??

\81. on board 到船上, 在船上, 上火车或飞机??

\82. boast of (or about) 吹嘘??

\83. out of breath 喘不过气来??

\84. in brief(=in as few words as possible)简言之??

\85. in bulk 成批地,不散装的??

\86. take the floor 起立发言??

\87. on business 出差办事.??

\88. be busy with sth.于某事 。 be busy doing sth. 忙于做某事??

\89. last but one 倒数第二.??

\90. but for (=without) 要不是. 表示假设??

\91. buy sth. for⋯money 用多少钱买??

\92. be capable of 能够, 有能力??be capable of being +过去分词是能够被⋯的??

\93. in any case(=for love or money, at any rate, at any price, at any cost??, whatever happens; anyhow)无论如何??

\94. in case (=for fear that) 万一;??

\95. in case of (=in the event of)如果发生⋯万一??in the case of 至于⋯, 就⋯而言??

\96. in no case在任何情况下都不(放句首倒装句)??

\97. be cautious of 谨防??

\98. center one’s attention on(=focus one’s attention on) 把某人的注意力集中在⋯上??

\99. be certain of (=be sure of) 有把握, 一定.??

\100. for certain of (=for sure )肯定地,有把握地??

\101. by chance(=accidentally, by accident)偶然??

\102. for a change换换环境(花样等)??

\103. charge sb. with ⋯控告某人犯有⋯??

\104. in charge of (=responsible for) 负责(某事)??in the charge of ⋯由⋯管??

\105. take charge of (=to be or become responsible for)负责管理(照顾)??

\106. charge⋯for 因⋯索取(费用) , charge sb. with sth. 控告某人犯有⋯??

\107. round the clock(=all day and all night, usually without stopping) 昼夜不停地??

\108. comment on 评论??

\109. commit oneself to 使自己承担⋯ commit sb. to prison把某人送进监狱; commit one’s idea to writing 把某人的想法写下来; commit a matter to a committee??把某事交给委员会讨论??

\110. in common (和⋯)有共同之处,共用.??be common to sb. 是与某人所共有的??

\111. keep company with (=be friendly and go out together) 和⋯要好.??

\112. compare⋯with ⋯ 把⋯与⋯比较??

\113. compare⋯to⋯ 把⋯比作⋯??

\114. by comparison 比较起来??

\115. in comparison with (=in contrast to) 和⋯比起来??

\116. compensate for (=give sth. to make up for) 补偿, 赔偿,弥补 compensate??sb. for sth. 赔偿,弥补??

\117. complain of (or about)抱怨;诉苦;控告;complain about 抱怨某人或事情; complain to sb. about sth. (or sb.) 向某人抱怨⋯; complain (抱怨); complement (补充); compliment (恭维)??

\118. comply with (=act in accordance with a demand, order, rule etc.) 遵守, 依从??

\119. conceive of (think of, imagine, consider) 想象,设想??

\120. concentrate on (or upon) 集中,专心??

\121. be concerned with (=about) 与⋯有关??

\122. concern oneself about??with 关心??

\123. in conclusion(=as the last thing)最后一点; at the conclusion of 当⋯结束时;??

\124. condemn sb. to 判决??

\125. on condition that (=if)以⋯为条件, 假如. in that = because因为; now that = since既然??for all that = although 尽管??

\126. in??out of condition (=thoroughly healthy or fit??not fit) 健康状况好不好 . in good (bad) condition处于良好(坏)状态??

\127. confess(to)(=admit a fault, crime, or sth. wrong)承认, 供认; confess to a crime 承认罪行.??

\128. confide in (=to talk freely to sb. about one’s secret) 对⋯讲真心话, 依赖??

\129. in confidence 推心置腹地; with confidence 满怀信心地; have confidence in 对⋯有信心??

\130. confidence in sb.??sth. 对⋯的信赖??

\131. be confident of 有信心; confidential 机密的??

\132. confine⋯to⋯ 把⋯限制在某范围内??

\133. confirm sb. in 使某人更坚定(信念等)??

\134. conform to (=be in agreement with, comply with) 符合,遵照,遵守;1)obey 服从; 2) observe; 3)comply with照⋯办; 4)keep to遵循; 5)abide by服从;6)stick to按..做??

\135. be confronted with(=be brought face to face with) 面对, 面临??

\136. congratulate sb. on 祝贺??

\137. in connection with(=with regard to)关于,??

\138. be conscious of(=be aware of)觉察,知道??

\139. consent to(=give agreement to permission)同意??

\140. in consequence (=as a result) 结果??

\141. in consequence of (=as a consequence of)由于⋯的结果??

1.???????? 142. under consideration 在考虑中??

\143. in consideration of (=in return for, on account of, because of )由于??

\144. on no consideration(in no case)无论如何也不??

145.take⋯into consideration (=take account of, take⋯into account)考虑到, 把 ⋯考虑进去??

\146. considerate (=thoughtful of the needs) 体贴的, 考虑他人需要的, considerable相当大的,值得考虑的??

\147. consist of(=be composed of)由⋯组成的. consist in主要在于. consist with符合,与⋯一致??

\148. be consistent with(=be in agreement with)与⋯一致. be consistent in一贯的??,??

\149. consult sb. on about sth. 向⋯征求⋯方面的意见, 就⋯向⋯请教??

\150. to one’s heart’s content尽情地,痛痛快快??

\151. be content with(=be satisfied with) 满足于be content to do sth. 愿意做某事??

\152. contrary to (=in opposition to) 与⋯相反??

\153. on the contrary 相反??

\154. contrast⋯with 把⋯与⋯相对(对照)??

\155. in contrast towith 和⋯形成对比 by contrast 对比之下??

\156. contribute to 有助于??

\157. under control (被)控制住 out of control无法控制??

\158. at one’s convenience(=where and when it suits one) 在方便的时间或地点 .be convenient to??for 对⋯方便??

\159. convince sb. of (=cause sb. to believe or feel certain; to persuade sb.)??使某人确信,try to persuade sb. to do sth.劝说某人做⋯??

\160. cope with(=deal with, try to find a solution to)应付, 处理??

\161. in the corner(of)在角落里;on(at) the comer of a street在街道拐弯处;round??the comer拐过弯; be in a tight corner陷入困境??

\162. correspond (with) ( =exchange letters regularly) 通信??

\163. correspond to 相当于 . correspond with 符合,一致??

\164. at all costs不惜任何代价 . at the cost of 以⋯为代价??

\165. a matter of course 理所当然的事??

\166. as a matter of course 当然地, 自然地??

\167. in (during) the course 在⋯过程中??

\168. in due course (=without too much delay) 没经过太久, 到一定时候??

\169. on credit赊购; with credit以优异成绩; to one’s credit使某人感到光荣; do sb. credit 使⋯感到光荣??

170.be critical of 爱挑毛病的,批评的??

\171. cure sb. of+某种疾病 治好某人的疾病??

172.a danger to对⋯的危险; be in danger(of)处于⋯危险中; be out of danger脱离危险??

\173. to date(=so far, until now) 到目前为止??

\174. out of date过时的;up to date新式的,时兴的; date back to可追溯到; date from从某时期开始(有)??

\175. deal with (=concern) 论及??

\176. be in debt to sb. 欠⋯的债??

\177. on the decline 在衰退中, 在减少中??in decline 下降; on the increase 在增加??

\178. to one’s delight 令某人感到高兴??to one’s regret 遗憾; sorrow悲痛; relief 安心; distress 苦恼; shame羞愧; surprise 惊奇; astonishment 惊奇;??

\179. delight in(=take great pleasure in doing sth.)喜欢, 取乐??

\180. take (a) delight in 喜欢干⋯, 以⋯为乐??

\181. demand sth. of sb. 向某人要求(非物质的)东西. demand sth. from sb. 向某人要求(物质的)东西??

182.in demand有需求;on demand受到要求时??

\183. be dependent on 依靠??

\184. deprive sb. of sth. 剥夺某人某物??

\185. derive⋯from(=obtain⋯from)从⋯取得,由⋯来的.derive from(=come from)起源于??

\186. despair of (=lose all hope of) 绝望??

\187. in despair 绝望??

\188. despite (=in spite of) 不管, 尽管??

\189. in detail 详细地??

\190. deviate from 偏离, 不按⋯办??

\191. on a diet 吃某种特殊饮食, 节食??

\192. differ from⋯in 与⋯的区别在于⋯??

\193. in difficulties⋯有困难,处境困难,??

\194. discharge sb. (from)⋯for (=dismiss sb. from a job for) 因⋯解雇, 开除??

\195. fall back (=retreat, turn back) 撤退;??in disorder 慌乱地, 狼狈不堪??

\196. on display(=being shown publicly)陈列??

\197. dispose of (=get rid of ,throw away)处理掉??

\198. beyond dispute不容争议的,无可争议??

\199. in dispute 在争议中??

\200. in the distance 在远处. make out 辩认出??

\201. (be) distinct from ( = be different from) 与⋯截然不同??

\202. distinguish between (=make or recognize differences) 辨别??

\203. distinguish⋯from 把⋯与⋯区别开??

\204. do away with(=get rid of; abolish; discard eliminate) 除去,废除,取消; do away with (=kill) 杀掉, 镇压??

\205. have⋯to do with 与⋯有关系??

\206. without doubt (=undoubtedly)无可置疑地??

\207. in doubt(=in a condition of uncertainty)对⋯表示疑惑??

\208. be due to 是由于??

\209. come off duty 下班??

\210. go on duty 上班??

\211. be on duty 值班, 值日, 在上班时??

\212. be in duty bound to (do) (=be required by one’s job or esp. by conscience) 有义务(做)??

\213. be eager for 想得到, 盼望??

\214. by ear (=play music from memory without having seen it printed) 凭记忆,不看乐谱??

\215. have an ear for (=have keen recognition of sounds esp. in music and language)对..有鉴赏力??

\216. a word in one’s ear 私房话, 秘密话??

\217. on earth 究竟, 到底, 全然??

\218. with ease ( = easily) 容易, 不费力??

\219. at (one’s) ease ( = without worry or nervousness) 自在,不拘束??

\220. put sb. at his??her ease (=free sb. from worry or nervousness)使某人感到无拘束??

\221. economize on (=save sth. instead of being wasteful) 节省??

\222. have an effect on 对⋯有影响??

\223. be in effect (=be in operation) 有效??

\224. go into effect 生效. ( 近 come into effect; take effect; be brought into effect)??

\225. in effect (=in fact, really) 实际上??

\226. give effect to (=carry out) 实行,使⋯生效??

\227. to no effect 不起作用,没有取得任何效果??

\228. (be) of no effect (=useless) 无效??

\229. to the effect that 大意是⋯,主要内容是⋯??

\230. to that effect 是那个意思的⋯??

\231. emerge from ( =appear, become known ) 出现, 暴露(问题. 意见等)??

\232. place(or put, lay) an emphasis on 强调, 把重点放在⋯上??

\233. encourage sb. in 鼓励; encourage sb. in hisher work 鼓励某人工作; encourage sb. in hisher idleness 怂恿某人游手好闲??

\234. encourage sb. in ⋯with sth. 用⋯鼓励某人做某事??

\235. on end (=continuously) 连续地??

\236. (be) at an end (=finished) 结束了

读后有收获可以请作者喝杯咖啡