• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

C# 语言规范--1.6 语句

发布: 2007-7-14 20:11 | 作者: 佚名    | 来源: 网络转载     | 查看: 9次 | 进入软件测试论坛讨论

领测软件测试网 C# 语言规范--1.6 语句:

C# 中的大多数语句都是直接从 C 和 C++ 借用的,但有一些值得注意的添加和修改。下表列出了可用的语句类型,并提供了每种类型的示例。

语句示例
语句列表和块语句
static void Main() {     F();    G();    {         H();        I();    } }
标记语句和 goto 语句
static void Main(string[] args) {    if (args.Length == 0)        goto done;    Console.WriteLine(args.Length);done:    Console.WriteLine("Done");}
局部常数声明
static void Main() {    const float pi = 3.14f;    const int r = 123;    Console.WriteLine(pi * r * r);}
局部变量声明
static void Main() {    int a;    int b = 2, c = 3;    a = 1;    Console.WriteLine(a + b + c);}
表达式语句
static int F(int a, int b) {    return a + b;}
static void Main() {    F(1, 2);  // Expression statement}
if 语句
static void Main(string[] args) {    if (args.Length == 0)        Console.WriteLine("No args");    else        Console.WriteLine("Args");}
switch 语句
static void Main(string[] args) {    switch (args.Length) {        case 0:            Console.WriteLine("No args");            break;        case 1:            Console.WriteLine("One arg ");            break;        default:            int n = args.Length;            Console.WriteLine("{0} args", n);            break;    }}
while 语句
static void Main(string[] args) {    int i = 0;    while (i < args.Length) {        Console.WriteLine(args[i]);        i++;    }}
do 语句
static void Main() {    string s;    do { s = Console.ReadLine(); }    while (s != "Exit");}
for 语句
static void Main(string[] args) {    for (int i = 0; i < args.Length; i++)        Console.WriteLine(args[i]);}
foreach 语句
static void Main(string[] args) {    foreach (string s in args)        Console.WriteLine(s);}
break 语句
static void Main(string[] args) {    int i = 0;    while (true) {        if (i == args.Length)            break;        Console.WriteLine(args[i++]);    }}
continue 语句
static void Main(string[] args) {    int i = 0;    while (true) {       Console.WriteLine(args[i++]);       if (i < args.Length)            continue;       break;    }}
return 语句
static int F(int a, int b) {    return a + b;}
static void Main() {    Console.WriteLine(F(1, 2));    return;}
throw 语句和 try 语句
static int F(int a, int b) {    if (b == 0)        throw new Exception("Divide by zero");    return a / b;}
static void Main() {    try {        Console.WriteLine(F(5, 0));    }    catch(Exception e) {        Console.WriteLine("Error");    }}
checkedunchecked 语句
static void Main() {    int x = Int32.MaxValue;    Console.WriteLine(x + 1);      // Overflow    checked {        Console.WriteLine(x + 1);  // Exception    }         unchecked {        Console.WriteLine(x + 1);  // Overflow    }}
lock 语句
static void Main() {    A a = ...;    lock(a) {        a.P = a.P + 1;    }}
using 语句
static void Main() {    using (Resource r = new Resource()) {        r.F();    }}


延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网