state 状态
A state is an assignment of values to variables.
一个状态就是一组为变量赋值的操作。
state function 状态函数
A state function is an ordinary [removed]one with no ′’′ or □\square□) that can contain variables and constants.
一个状态函数就是一个普通的表达式,包含变量和常量,但不包含 ′’′ 和 □\sq
1. 简单介绍:
安卓中打印日志的方法有5中,分别为:
1.Log.v() – VERBOSE
2.Log.d() – DEBUG
3.Log.i()- INFO
4.Log.w()- WARN
5.Log.e()- ERROR
强度从上至下递增
Log部分源码和常量解释:
/**
* Priority constant for the println method; use Log.v.
*/
public static final int VERBOSE = 2;