请输入您要查询的百科知识:

 

词条 checked
释义

§ 单词

§ 举例

checked 关键字用于控制整型算术运算和转换的溢出检查上下文。它可以按照下列形式用作运算符或语句。

checked 语句:

checked block

checked 运算符:

checked (expression)

其中:

block

包含要在已检查上下文中计算的表达式的语句块。

expression

要在已检查上下文中计算的表达式。注意表达式必须位于括号 ( ) 内。

示例 1

// statements_checked.cs

// The overflow of non-constant expressions is checked at run time

using System;

class OverFlowTest

{

static short x = 32767;   // Max short value

static short y = 32767;

// Using a checked expression

public static int myMethodCh()

{

int z = 0;

try

{

z = checked((short)(x + y));

}

catch (System.OverflowException e)

{

System.Console.WriteLine(e.ToString());

}

return z;   // Throws the exception OverflowException

}

public static void Main()

{

Console.WriteLine("Checked output value is: ", myMethodCh());

}

}

随便看

 

百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/13 17:10:36