//变量(variable):程序中最基本的存储单元,包括变量名、类型、作用域 //变量应该先声明,只有声明后系统才会为其分配相应长度的存储空间,变量实质上就是存储单元的名字 //变量分为局部变量、成员变量、常量。局部变量一般是方法内部定义的变量,使用前先声明后初始化 //成员变量又叫实例变...
分类:
编程语言 时间:
2015-01-29 19:04:36
阅读次数:
129
local variable:在方法体中声明的变量编译源代码时可指定环境变量标识符 = 变量名数组不是原生类只有abstract 和 public 可以修饰 interface 扩展:abstract 和 final 冲突,不能修饰一个类实例方法:通过类的实例才能访问的方法类方法 = 静态方法 = static method
Propagation:事务传播行为
...
分类:
编程语言 时间:
2015-01-29 09:32:01
阅读次数:
237
计算机程序的运行需要对值(value)比如数字3.14或者文本"hello world"进行操作,在编程语言中,能够表示并操作的值的类型叫做数据类型(type),编程语言最基本的特性就是主持多种数据类型。当程序需要将值保持起来以备将来使用时,便将其赋值给(将值“保存”到)一个变量(variable)...
分类:
编程语言 时间:
2015-01-27 20:06:59
阅读次数:
214
1. Define variable return_code to record the function's status.int return_code = 0;2. Define the exit flag:exit_flag, which is used by goto. This flag...
分类:
其他好文 时间:
2015-01-27 19:54:42
阅读次数:
198
首先看一下for循环的用法
对一组文件中的每一个文件执行某个特定命令。
FOR %variable IN (set) DO command [command-parameters]
%variable 指定一个单一字母可替换的参数。
(set) 指定一个或一组文件。可以使用通配符。
command 指定对每个文件执行的命令。
command-param...
分类:
其他好文 时间:
2015-01-27 16:24:23
阅读次数:
166
Notes from C++PrimerIn general, head file includes: class definition, declaration of extern variable and declaration of function.1. Head file is used ...
分类:
其他好文 时间:
2015-01-27 13:01:17
阅读次数:
117
SICP 习题:
#lang scheme
( define ( variable? x )
( symbol? x ) )
( define ( same-variable? x y )
( and ( variable? x )
( variable? y )
( eq? x y ) ) )
( define ...
分类:
其他好文 时间:
2015-01-26 22:49:12
阅读次数:
156
在stackoverflow中找到了终极解决办法:>>> import matplotlib>>> matplotlib.matplotlib_fname()# This is the file location in Ubuntu'/etc/matplotlibrc'找到matplotlibrc之...
分类:
其他好文 时间:
2015-01-26 13:21:29
阅读次数:
708
机器学习Machine Learning - Andrew NG
courses学习笔记...
分类:
系统相关 时间:
2015-01-25 21:07:24
阅读次数:
185
1.单位,基准 module
2.乘法 multiplication
3.事件 occurrence
4.页面失效 page fault
5.队列 queue
6.会话层 session layer
7.变量 variable
8.加法器 adder
9.字符 character
10.方程式,等式 equation
11.询问 inqui...
分类:
其他好文 时间:
2015-01-24 17:23:24
阅读次数:
174