您的位置:首页 > 其它

1.3 Variables and parameters

2013-04-17 14:31 211 查看
Variables represent storage locations.

Every variable has a type that determines what values can be stored in the variable.

Local variables are variables that are declared in methods,properties,or indexers.

A local variables is defined by specifying a type name and a declarator that specifies the variable name and an optional initial value,as in

View Code

int a,b=1;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: