亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

C語言

運算符關鍵字typeof的使用

時間:2024-08-26 01:49:07 C語言 我要投稿
  • 相關推薦

運算符關鍵字typeof的使用

  引導語:C語言是一種計算機程序設計語言,它既具有 高級語言的特點,又具有 匯編語言的特點。以下是小編整理的運算符關鍵字typeof的使用,歡迎參考閱讀!

  用于獲取類型的 System.Type 對象。typeof 表達式采用以下形式:

  System.Type type = typeof(int);

  備注

  若要獲取表達式的運行時類型,可以使用 .NET Framework 方法 GetType,如以下示例中所示:

  int i = 0;

  System.Type type = i.GetType();

  不能重載 typeof 運算符。

  typeof 運算符也能用于公開的泛型類型。具有不止一個類型參數的類型的規(guī)范中必須有適當數量的逗號。下面的示例演示如何確定方法的返回類型是否是泛型 IEnumerable<(Of <(t>)>)。假定此方法是 MethodInfo 類型的實例:

  string s = method.ReturnType.GetInterface

  (typeof(System.Collections.Generic.IEnumerable<>).FullName

  示例

  C#

  public class SampleClass2

  {

  public int sampleMember;

  public void SampleMethod() {}

  static void Main()

  {

  Type t = typeof(SampleClass);

  // Alternatively, you could use

  // SampleClass obj = new SampleClass();

  // Type t = obj.GetType();

  Console.WriteLine("Methods:");

  System.Reflection.MethodInfo[] methodInfo = t.GetMethods();

  foreach (System.Reflection.MethodInfo mInfo in methodInfo)

  Console.WriteLine(mInfo.ToString());

  Console.WriteLine("Members:");

  System.Reflection.MemberInfo[] memberInfo = t.GetMembers();

  foreach (System.Reflection.MemberInfo mInfo in memberInfo)

  Console.WriteLine(mInfo.ToString());

  }

  }

  /*

  Output:

  Methods:

  System.Type GetType()

  System.String ToString()

  Boolean Equals(System.Object)

  Int32 GetHashCode()

  Members:

  System.Type GetType()

  System.String ToString()

  Boolean Equals(System.Object)

  Int32 GetHashCode()

  Void .ctor()

  Void .ctor(Int32, System.String)

  System.String name

  Int32 id

  */

  此示例使用 GetType 方法確定用來包含數值計算的結果的類型。這取決于結果數字的存儲要求。

  C#

  class GetTypeTest

  {

  static void Main()

  {

  int radius = 3;

  Console.WriteLine("Area = {0}", radius * radius * Math.PI);

  Console.WriteLine("The type is {0}",

  (radius * radius * Math.PI).GetType()

  );

  }

  }

  /*

  Output:

  Area = 28.2743338823081

  The type is System.Double

  */

【運算符關鍵字typeof的使用】相關文章:

Java中運算符的使用10-17

java的import關鍵字的使用08-17

Java編程中this關鍵字與super關鍵字的使用方法08-23

c#查詢關鍵字之group子句的使用09-07

PHP三元運算符的使用方法技巧09-07

Java運算符10-04

Java“異或” 運算符08-17

C語言的條件運算符12-19

C語言條件運算符10-26

c語言算術運算符07-23