as (C# リファレンス)
更新 : 2007 年 11 月
as 演算子は、互換性のある参照型の間で、特定の種類の変換を実行するために使用されます。次に例を示します。
class csrefKeywordsOperators
{
class Base
{
public override string ToString()
{
return "Base";
}
}
class Derived : Base
{ }
class Program
{
static void Main()
{
Derived d = new Derived();
Base b = d as Base;
if (b != null)
{
Console.WriteLine(b.ToString());
}
}
}
}
解説
as 演算子はキャスト操作とよく似ています。ただし、変換可能でない場合、as は例外を発行する代わりに null を返します。次のような式があるとします。
expression as type
この式は、expression が 1 回だけ評価されることを除いて次の式と同等です。
expression is type ? (type)expression : (type)null
as 演算子は参照変換とボックス化変換だけを実行します。as 演算子は、ユーザー定義変換などの他の変換を実行できません。ユーザー定義変換は、キャスト式を使用して実行します。
使用例
class ClassA { }
class ClassB { }
class MainClass
{
static void Main()
{
object[] objArray = new object[6];
objArray[0] = new ClassA();
objArray[1] = new ClassB();
objArray[2] = "hello";
objArray[3] = 123;
objArray[4] = 123.4;
objArray[5] = null;
for (int i = 0; i < objArray.Length; ++i)
{
string s = objArray[i] as string;
Console.Write("{0}:", i);
if (s != null)
{
Console.WriteLine("'" + s + "'");
}
else
{
Console.WriteLine("not a string");
}
}
}
}
/*
Output:
0:not a string
1:not a string
2:'hello'
3:not a string
4:not a string
5:not a string
*/
C# 言語仕様
詳細については、「C# 言語仕様」の次のセクションを参照してください。
6 変換
7.9.11 as 演算子