program by the way......
ostrich
birds
fruit
apple
constructor
height
weight
method
overload
override
base
sub
inherit
extends
composite
package
import
static
math
include
public
private
protected
final:最后的,最终的,决定性的,不可更改的。
creature
animal
wolf
password
button
library
axure
flow chart
variable:变量
constant:常量
pool
conversion
instance
instanceof
boolean
Integer
Exception
edit:编辑
standard:标准的
edition:版本
JavaSE:Java标准版
enterprise:企业级的
JavaEE:Java企业版
comparable
world
war
game
system
WWGS
great
beat
breath
init
name
age
gender
phone
address:地址
eat
drink
play
sleep
address list
abstract
interface
lambda
enum
wrapper class
automatic
autoboxing
autoanboxing
primitive
character
signed
unsigned
compare
accept
agreement
trust
manager
enable
safe
reading
mode
enable safe reading mode
cancel
launch
access
singleton:一个,独身,单独。
physical data model
precition
date of birth
reference:引用、参照
reference variable:引用变量
school
tools
auto increment
Display Preferences
format
modify
alter
fill
selected symbols
describe
relationship
unique key
local:局部的、本地的
local variable:局部变量
replace:替换
join:连接、结合、参加
immutable:不可改变的
detail:详述、仔细汇报、各种细节
post code:邮政编码、记入代码
cache:电脑缓存区
shape:形状、模型、状态、身材
calculate:计算
perimeter:周长
type:类型
triangle:三角形
sides:侧面、面
circle:圆、圆状物
radius:半径
turn:旋转、使转动
rate:速度、比率
turn rate:转速
speed:速度、疾行、加速
meter:计量器、计量仪
speed meter:速度计
implements:执行、贯彻、实现
product:产品
produce:制造、生产
produce time:生产日期
command:命令、指挥、控制
process:过程、处理、加工
program by the way......的更多相关文章
- [project euler] program 4
上一次接触 project euler 还是2011年的事情,做了前三道题,后来被第四题卡住了,前面几题的代码也没有保留下来. 今天试着暴力破解了一下,代码如下: (我大概是第 172,719 个解出 ...
- Solved: “Cannot execute a program. The command being executed was \roslyn\csc.exe”
When you publish your ASP.NET project to a hosting account such as GoDaddy, you may run into the iss ...
- 关于The C compiler "arm-none-eabi-gcc" is not able to compile a simple test program. 的错误自省...
在 GCC ARM Embedded https://launchpad.net/gcc-arm-embedded/ 上面下载了个arm-none-eabi-gcc 用cmake 编译时 #指定C交叉 ...
- c中使用gets() 提示warning: this program uses gets(), which is unsafe.
今天在C代码中使用gets()时提示“warning: this program uses gets(), which is unsafe.”,然后这个程序还能运行,无聊的我开始查阅资料,为啥gets ...
- Unable to load R3 module D:\Program Files\Oracle\VirtualBox/VBoxDD.DLL (VBoxDD): GetLastError=1790 (VERR_UNRESOLVED_ERROR).
Unable to load R3 module D:\Program Files\Oracle\VirtualBox/VBoxDD.DLL (VBoxDD): GetLastError=1790 ( ...
- Git for Windows - The Program can't start because libiconv2.dll is missing
今天在新装的win10 预览版上面,发现git不能启动了,提示信息主要是: The Program can't start because libiconv2.dll is missing 于是我在网 ...
- C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0
C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0
- Program.cs
Program.cs using System; namespace HelloWorld { class Program { [STAThread] static void Main(string[ ...
- sudo: no tty present and no askpass program specified(转)
sudo: no tty present and no askpass program specified 2012-11-30 09:30 5040人阅读 评论(1) 收藏 举报 修改sudo配置文 ...
- 委托的例子,from C# advanced program
class BubbleSorter { static public void Sort<T>(IList<T> sortArray, Func<T, T, bool&g ...
随机推荐
- 学习MongoDB 七: MongoDB索引(索引基本操作)(一)
一.简介 在MongoDB建立索引能提高查询效率,只需要扫描索引只存储的这个集合的一小部分,并只把这小部分加载到内存中,效率大大的提高,如果没有建立索引,在查询时,MongoDB必须执行全表扫描,在数 ...
- MySQL 查看执行的SQL记录
我们时常会有查看MySQL服务端执行的SQL记录.在MySQL5.1之后提供了支持,通过在启动时加入-l 或者--log选项即可: mysqld -l mysqld --log 在后面的版本(5.1. ...
- Dep数据发布,推送
package com.cfets.ts.u.shchgateway.util; import com.cfets.cwap.s.stp.MessageUnit; import com.cfets.t ...
- go遍历目录
package main import ( "fmt" "io/ioutil" "os" "path/filepath" ...
- Nginx Windows 安装启动
原文连接:http://tengine.taobao.org/book/appendix_c.html#nginxwindows 下载 Nginx是开源软件,用户可以访问 http://nginx.o ...
- favicon.ico
favicon.ico 作为网页的图标,被当前的所有浏览器都支持. 可直接放在主目录下,自动加载,也可设置在header中. <link rel="shortcut icon" ...
- 编写ios和android共用的c/c++库时 使用iconv的问题(转)
因为在项目中需要同时维护ios和Android,不同的代码不利于开发的便捷和以后的维护,所以在最近的一个项目中,两种手机应用的通信部分打算使用c/c++库来统一编写,ios调用.a静态库,androi ...
- jdk5新特性
前两天看到jdk10试用版都出来了,才发现自己连1.8都没用过,对不同版本的jdk的新特性也不是太了解,所以想还是百度一下看看人家怎么说然后自己记录总结一下,其中jdk1.8的新特性可以到edu.51 ...
- Haskell语言学习笔记(35)Contravariant
contravariant 模块 contravariant 模块需要安装 $ cabal install contravariant contravariant-1.4 Prelude> :m ...
- Java 枚举那点事
目录 最近有需求,想存自定义的枚举值,比如 HOTLINE("Hotline") 我想存 Hotline 于是研究了一下Java的枚举问题 如下数据库的Entity (贫血模型哈) ...