青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎} {C++ 高級} {C#界面,C++核心算法} {設計模式} {C#基礎}

A first look at C++/CLI(C++的管理擴展)

Introduction

When Microsoft brought out the Managed Extensions to C++ with VS.NET 7, C++ programmers accepted it with mixed reactions. While most people were happy that they could continue using C++, nearly everyone was unhappy with the ugly and twisted syntax offered by Managed C++. Microsoft obviously took the feedback it got very seriously and they decided that the MC++ syntax wasn't going to be much of a success.

On October 6th 2003, the ECMA announced the creation of a new task group to oversee development of a standard set of language extensions to create a binding between the ISO standard C++ programming language and Common Language Infrastructure (CLI). It was also made known that this new set of language extensions will be known as the C++/CLI standard, which will be supported by the VC++ compiler starting with the Whidbey release (VS.NET 2005).

Problems with the old syntax

  • Ugly and twisted syntax and grammar - All those double underscores weren't exactly pleasing to the eye.
  • Second class CLI support - Compared to C# and VB.NET, MC++ used contorted workarounds to provide CLI support, for e.g. it didn't have a for-each construct to enumerate .NET collections.
  • Poor integration of C++ and .NET - You couldn’t use C++ features like templates on CLI types and you couldn’t use CLI features like garbage collection on C++ types.
  • Confusing pointer usage - Both unmanaged C++ pointers and managed reference pointers used the same * based syntax which was quite confusing because __gc pointers were totally different in nature and behavior from unmanaged pointers.
  • The MC++ compiler could not produce verifiable code

What C++/CLI gives us?

  • Elegant syntax and grammar -This gave a natural feel for C++ developers writing managed code and allowed a smooth transition from unmanaged coding to managed coding. All those ugly double underscores are gone now.
  • First class CLI support - CLI features like properties, garbage collection and generics are supported directly. And what's more, C++/CLI allows jus to use these features on native unmanaged classes too.
  • First class C++ support - C++ features like templates and deterministic destructors work on both managed and unmanaged classes. In fact C++/CLI is the only .NET language where you can *seemingly* declare a .NET type on the stack or on the native C++ heap.
  • Bridges the gap between .NET and C++ - C++ programmers won't feel like a fish out of water when they attack the BCL
  • The executable generated by the C++/CLI compiler is now fully verifiable.

Hello World

				using
				namespace System;

void _tmain()
{
    Console::WriteLine("Hello World");
}

Well, that doesn't look a lot different from old syntax, except that now you don't need to add a reference to mscorlib.dll because the Whidbey compiler implicitly references it whenever you compile with /clr (which now defaults to /clr:newSyntax).

Handles

One major confusion in the old syntax was that we used the * punctuator with unmanaged pointers and with managed references. In C++/CLI Microsoft introduces the concept of handles.

				void _tmain()
{
    //The ^ punctuator represents a handle
    String^ str = "Hello World";
    Console::WriteLine(str);
}

The ^ punctuator (pronounced as cap) represents a handle to a managed object. According to the CLI specification a handle is a managed object reference. Handles are the new-syntax equivalent of __gc pointers in the MC++ syntax. Handles are not to be confused with pointers and are totally different in nature from pointers.

How handles differ from pointers?

  • Pointers are denoted using the * punctuator while handles are denoted using the ^ punctuator.
  • Handles are managed references to objects on the managed heap, pointers just point to a memory address.
  • Pointers are stable and GC cycles do not affect them, handles might keep pointing to different memory locations based on GC and memory compactions.
  • For pointers, the programmer must deleteexplicitly or else suffer a leak. For handles delete is optional.
  • Handles are type-safe while pointers are most definitely not. You cannot cast a handle to a void^.
  • Just as a new returns a pointer, a gcnew returns a handle.

Instantiating CLR objects

				void _tmain()
{
    String^ str = gcnew String("Hello World");
    Object^ o1 = gcnew Object();
    Console::WriteLine(str);
}

The gcnew keyword is used to instantiate CLR objects and it returns a handle to the object on the CLR heap. The good thing about gcnew is that it allows us to easily differentiate between managed and unmanaged instantiations.

Basically, the gcnew keyword and the ^ operator offer just about everything you need to access the BCL. But obviously you'd need to create and declare your own managed classes and interfaces.

Declaring types

CLR types are prefixed with an adjective that describes what sort of type it is. The following are examples of type declarations in C++/CLI :-

  • CLR types
    • Reference types
      • refclass RefClass{...};
      • refstruct RefClass{...};
    • Value types
      • value class ValClass{...};
      • value struct ValClass{...};
    • Interfaces
      • interfaceclass IType{...};
      • interfacestruct IType{...};
    • Enumerations
      • enumclass Color{...};
      • enumstruct Color{...};
  • Native types
    • class Native{...};
    • struct Native{...};
				using
				namespace System;

interfaceclass IDog
{
    void Bark();
};

refclass Dog : IDog
{
public:
    void Bark()
    {
        Console::WriteLine("Bow wow wow");
    }
};

void _tmain()
{
    Dog^ d = gcnew Dog();
    d->Bark();
}

There, the syntax is now so much more neater to look at than the old-syntax where the above code would have been strewn with double-underscored
?keywords like __gc and __interface.

Boxing/Unboxing

Boxing is implicit (yaay!) and type-safe. A bit-wise copy is performed and an Object is created on the CLR heap. Unboxing is explicit - just do a reinterpret_cast and then dereference.

				void _tmain()
{
    int z = 44;
    Object^ o = z; //implicit boxingint y = *reinterpret_cast<int^>(o); //unboxing

    Console::WriteLine("{0} {1} {2}",o,z,y);

    z = 66; 
    Console::WriteLine("{0} {1} {2}",o,z,y);
}

// Output// 44 44 44// 44 66 44

The Objecto is a boxed copy and does not actually refer the int value-type which is obvious from the output of the second Console::WriteLine.

When you box a value-type, the returned object remembers the original value type.

				void _tmain()
{
    int z = 44;
    float f = 33.567;

    Object^ o1 = z; 
    Object^ o2 = f; 

    Console::WriteLine(o1->GetType());
    Console::WriteLine(o2->GetType());    
}

// Output// System.Int32// System.Single

Thus you cannot try and unbox to a different type.

				void _tmain()
{
    int z = 44;
    float f = 33.567;

    Object^ o1 = z; 
    Object^ o2 = f;

    int y = *reinterpret_cast<int^>(o2);//System.InvalidCastExceptionfloat g = *reinterpret_cast<float^>(o1);
//System.InvalidCastException }

If you do attempt to do so, you'll get a System.InvalidCastException. Talk about perfect type-safety! If you look at the IL generated, you'll see the MSIL box instruction in action. For example :-

				void Box2()
{
    float y=45;
    Object^ o1 = y;
}

gets compiled to :-

.maxstack  1
.locals (float32 V_0, object V_1)

  ldnull
  stloc.1ldc.r4     45.
  stloc.0ldloc.0
  box   [mscorlib]System.Single
  stloc.1ret

According to the MSIL docs, "The box instruction converts the ‘raw’ valueType (an unboxed value type) into an instance of type Object (of type O). This is accomplished by creating a new object and copying the data from valueType into the newly allocated object."

Further reading

Conclusion

Alright, so why would anyone want to use C++/CLI when they can use C#, J# and that VB thingie for writing .NET code? Here are the four reasons I gave during my talk at DevCon 2003 in Trivandrum (Dec 2003).

  • Compile existing C++ code to IL (/clr magic)
  • Deterministic destruction
  • Native interop support that outmatches anything other CLI languages can offer
  • All those underscores in MC++ are gone ;-)

About Nishant Sivakumar



Editor
Site Builder
Nish is a real nice guy living in Toronto who has been coding since 1990, when he was 13 years old. Originally from sunny Trivandrum in India, he has moved to Toronto so he can enjoy the cold winter and get to play in some snow.

He works for The Code Project and handles the Dundas MFC products Ultimate Toolbox, Ultimate Grid and Ultimate TCP/IP that are sold exclusively through The Code Project Storefront. He frequents the CP discussion forums when he is not coding, reading or writing. Nish hopes to visit at least three dozen countries before his human biological mechanism stops working (euphemism used to avoid the use of the d-word here), and regrets that he hasn't ever seen snow until now (will be rectified this December). Oh btw, it must be mentioned that normally Nish is not inclined to speak about himself in the 3rd person.

Nish has been a Microsoft Visual C++ MVP since October, 2002 - awfully nice of Microsoft, he thinks. He maintains an MVP tips and tricks web site - www.voidnish.com where you can find a consolidated list of his articles, writings and ideas on VC++, MFC, .NET and C++/CLI. Oh, and you might want to check out his blog on C++/CLI, MFC, .NET and a lot of other stuff - blog.voidnish.com

Nish loves reading Science Fiction, P G Wodehouse and Agatha Christie, and also fancies himself to be a decent writer of sorts. He has authored a romantic comedy Summer Love and Some more Cricket as well as a programming book – Extending MFC applications with the .NET Framework.

Click here to view Nishant Sivakumar's online profile.



?

C++的管理擴展

簡介

C++管理擴展是一組語言擴展,它幫助Microsoft Visual C++開發人員為微軟.NET編寫應用程序。

管理擴展是有用的,如果你:

  • 希望提高開發人員使用C++編寫.NET應用程序的生產率
  • 要分階段地將一大段代碼從非管理C++中移植到.NET平臺上
  • 想從.NET Framework應用程序中使用已有的非管理C++組件。
  • 想從非管理C++中使用.NET Framework組件
  • 在同一應用程序中混合非管理C++代碼和.NET代碼

C++管理擴展為開發人員定位.NET Framework提供了無比的靈活性。傳統的非管理C++和管理C++代碼可以自由地混合在一個
應用程序中。用管理擴展編寫的應用程序可以利用兩種代碼的優點。使用管理擴展,現有組件可以方便地封裝到.NET組件中,
在與.NET集成的同時保留原有投資。

什么是管理擴展?
擴展允許你在C++中編寫在.NET Framework控制下運行的管理(或.NET)類。(非管理C++類運行在傳統的微軟基于Windows?
的環境中。)一個管理類是一個內置的.NET類,可以完全利用.NET Framework。

管理擴展是Visual C++開發系統的新關鍵字和屬性。它們允許開發人員決定哪些類或函數編譯為管理或非管理代碼。
這些部分然后就可以平滑地與其它部分或外部庫交互。

管理擴展也用于在C++源代碼中表示.NET類型和概念。這就允許開發人員容易地編寫.NET應用程序,而無需編寫額外代碼。

主要使用環境

  • 將現有代碼平滑地移植到 .NET
    如果你在C++代碼上有大量投資,管理擴展將幫你將它們平滑地轉移到.NET平臺中。因為你可以在一個應用程序--
  • 甚至是同一文件中混合管理和非管理代碼,你可以用很長時間轉移代碼,一個組件接一個組件地轉換到.NET中。
  • 或你可以繼續在非管理C++中編寫組件,以利用該語言的強大功能和靈活性,只用管理擴展編寫少量的高性能的
  • 封裝器(它使你的代碼可以從.NET組件中調用)。
  • 從 .NET語言中訪問C++組件
    管理擴展允許你從任何.NET語言中調用C++類。你需要用擴展編寫簡單的封裝器,它將你的C++類和方法暴露為
  • 管理類。封裝器是完全的管理類,可以從任何.NET語言中調用。封裝器類是作為了管理類與非管理C++類間的
  • 映射層。它簡單地將方法調用直接傳遞到非管理類中。管理擴展可用于調用任何內置的動態鏈接庫(DLL)及
  • 內置類。
  • 從內置代碼中訪問.NET 類
    使用管理擴展,你可以創建并從C++代碼中直接調用.NET類。你可以編寫將.NET組件當作任何其它管理C++類的
  • C++代碼。你可以使用.NET Framework中內置的COM調用.NET類。你使用COM還是使用管理擴展訪問.NET組件
  • 要依賴于你的工程。在一些情況下,利用現有的COM支持是最好的選擇。在另一些情況下,使用管理擴展可能
  • 會增加性能和開發者的生產率。
  • 在同一可執行文件中的管理和內置代碼
    Visual C++編譯器能在管理和非管理上下文中自動而透明的翻譯數據、指針和指令流。這個過程是允許管理擴展
  • 無縫地與非管理代碼交互的過程。開發人員能夠控制什么樣的數據和代碼可以管理。選擇每個類或函數是管理
  • 還是非管理的能力為開發人員提供了更大的靈活性。一些代碼或數據類型在非管理環境中執行得要比較好。
  • 另一方面,管理代碼由于如碎片收集和類庫等特性,它提高了開發人員的生產率。現有非管理代碼可以一次
  • 一部分地轉化為管理代碼,因此保留了已有的投資。

posted on 2005-12-29 15:14 夢在天涯 閱讀(1031) 評論(2)  編輯 收藏 引用 所屬分類: Manage c++ /CLI

評論

# re: A first look at C++/CLI 2006-08-17 17:10 夢在天涯

c++\CLI全新的語法,結合了native c++ 和.net的大部分功能:(VS2005支持c++\CLI,例如建立visual c++下的CLR Console Project)

Elegant syntax and grammar -This gave a natural feel for C++ developers writing managed code and allowed a smooth transition from unmanaged coding to managed coding. All those ugly double underscores are gone now.
First class CLI support - CLI features like properties, garbage collection and generics are supported directly. And what's more, C++/CLI allows jus to use these features on native unmanaged classes too.
First class C++ support - C++ features like templates and deterministic destructors work on both managed and unmanaged classes. In fact C++/CLI is the only .NET language where you can *seemingly* declare a .NET type on the stack or on the native C++ heap.
Bridges the gap between .NET and C++ - C++ programmers won't feel like a fish out of water when they attack the BCL
The executable generated by the C++/CLI compiler is now fully verifiable.
  回復  更多評論   

# re: A first look at C++/CLI(C++的管理擴展) 2006-08-18 10:14 夢在天涯

Managed c++ VS2002支持,

c++\CLI 全新的語法,vs2005支持,

他們不是同一個東西.  回復  更多評論   

公告

EMail:itech001#126.com

導航

統計

  • 隨筆 - 461
  • 文章 - 4
  • 評論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1814994
  • 排名 - 5

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              亚洲国产日韩欧美在线99| 欧美黄色小视频| 一本色道久久综合亚洲91| 亚洲韩国精品一区| 久久一区中文字幕| 欧美成人一区二区三区片免费| 久久深夜福利| 亚洲大片在线| 一区二区激情| 午夜综合激情| 毛片基地黄久久久久久天堂| 欧美久久视频| 国产在线观看精品一区二区三区| 国产一区二区中文字幕免费看| 亚洲国产精品www| 一区二区三区日韩欧美| 午夜精品亚洲| 欧美激情成人在线| 亚洲午夜成aⅴ人片| 久久久久网站| 国产精品毛片a∨一区二区三区|国| 国产精自产拍久久久久久蜜| 欧美福利电影在线观看| 欧美日韩一级黄| 国产精品一区二区在线观看不卡| 国产欧美一区二区三区另类精品| 黄色成人小视频| 亚洲欧洲日韩女同| 欧美一区二区在线播放| 最近中文字幕日韩精品| 欧美在线观看视频一区二区三区| 欧美福利在线| 一区二区视频欧美| 午夜一区不卡| 99热在线精品观看| 免费看精品久久片| 国产自产精品| 性欧美xxxx视频在线观看| 亚洲精品极品| 免费成人美女女| 一区二区亚洲精品| 久久av资源网站| av72成人在线| 欧美精品一区二| 亚洲人成77777在线观看网| 久久福利视频导航| 亚洲图中文字幕| 欧美午夜精品理论片a级大开眼界| 悠悠资源网亚洲青| 久久人91精品久久久久久不卡 | 新狼窝色av性久久久久久| 欧美激情一区在线| 久久精品国产免费看久久精品| 国产精品男女猛烈高潮激情 | 亚洲一区二区三区免费在线观看 | 亚洲电影有码| 亚洲视频在线观看视频| 欧美国产日韩一区二区三区| 很黄很黄激情成人| 久久激情婷婷| 欧美在线免费观看亚洲| 国产农村妇女精品一区二区| 午夜精品久久久久久久99水蜜桃 | 免费欧美电影| 久久精品免费看| 国产一区美女| 久久深夜福利免费观看| 久久久久久电影| 亚洲第一在线综合在线| 女女同性精品视频| 欧美va亚洲va香蕉在线| 亚洲精品久久久久久一区二区| 欧美电影在线观看完整版| 另类成人小视频在线| 最新高清无码专区| 亚洲精品美女| 国产精品普通话对白| 欧美一区二区性| 久久久久.com| 亚洲精品美女在线观看| 99re这里只有精品6| 国产精品久久久久毛片大屁完整版 | 久久青草欧美一区二区三区| 久久久亚洲高清| 亚洲精品乱码久久久久久| 亚洲乱码国产乱码精品精天堂| 国产精品美女xx| 久久在线播放| 欧美日韩高清在线播放| 性色av一区二区三区在线观看| 久久国产精彩视频| 亚洲精品在线观看视频| 亚洲在线成人精品| 亚洲三级视频| 亚洲女同精品视频| 亚洲韩国精品一区| 亚洲午夜久久久久久久久电影院| 国产一区二区精品久久99| 亚洲二区在线视频| 国产欧美一区二区三区沐欲| 亚洲第一综合天堂另类专| 国产精品视频免费观看www| 欧美激情欧美激情在线五月| 国产精品一区二区三区久久久 | 久久精品夜色噜噜亚洲a∨| 美日韩在线观看| 欧美在线不卡视频| 欧美精品在线观看播放| 久久久久九九九| 欧美日韩另类综合| 欧美电影免费观看高清完整版| 欧美性猛交99久久久久99按摩 | 亚洲精品一区二区三| 欧美一区二区大片| 亚洲欧美日韩国产综合精品二区| 久久中文在线| 欧美一区二区三区在线观看视频| 欧美精品在线看| 欧美激情一区二区三区| 黑人巨大精品欧美黑白配亚洲| 亚洲一级黄色| 亚洲一级高清| 欧美绝品在线观看成人午夜影视| 久久日韩精品| 黑丝一区二区| 久久九九99| 久久久久国色av免费看影院| 国产欧美日韩精品丝袜高跟鞋| 一区二区三区高清| 亚洲图片欧美日产| 欧美日韩天天操| 日韩亚洲综合在线| 中文在线一区| 欧美体内she精视频| 亚洲精品影院| 亚洲一级一区| 国产精品日本| 亚洲性av在线| 欧美在线日韩精品| 国精品一区二区三区| 久久精品一区| 欧美国产一区视频在线观看 | 亚洲精品精选| 欧美日韩一区二区三区在线| 99国产精品久久| 午夜精品久久久久影视 | 亚洲精品永久免费| 一区二区三区久久网| 国产精品国产亚洲精品看不卡15| 亚洲精品三级| 先锋影院在线亚洲| 国产精品一区二区三区成人| 久久亚洲春色中文字幕久久久| 一本色道精品久久一区二区三区| 欧美二区在线观看| 欧美大片免费观看在线观看网站推荐| 永久免费视频成人| 黄色成人av在线| 国产综合自拍| 美女爽到呻吟久久久久| 欧美一区二区三区精品电影| 国产精品视频1区| 另类亚洲自拍| 农村妇女精品| 亚洲视频axxx| 日韩一级在线观看| 欧美二区乱c少妇| 一区二区激情视频| 亚洲人成艺术| 国产精品久久久99| 免费在线欧美黄色| 欧美日韩另类在线| 亚洲午夜av电影| 午夜在线视频观看日韩17c| 永久免费毛片在线播放不卡| 91久久亚洲| 伊人久久大香线蕉av超碰演员| 最近中文字幕mv在线一区二区三区四区 | 快射av在线播放一区| 免费成人av在线| 亚洲欧美视频一区| 免费在线欧美视频| 久久久国产精品一区二区中文| 快射av在线播放一区| 久久精品国产99| 国产精品影视天天线| 一区二区三区视频免费在线观看| 亚洲高清久久久| 久久久久五月天| 欧美电影在线观看完整版| 国产午夜精品一区二区三区欧美| 国产伦精品一区二区三区高清版| 亚洲精品免费一二三区| 亚洲韩国精品一区| 美女久久一区| 两个人的视频www国产精品| 国产曰批免费观看久久久| 亚洲一二三区精品| 欧美中文字幕在线视频| 国产一区二区三区在线观看免费 |