C++/CLI VS CSharp

來源:互聯網
上載者:User
Kenny Kerr 一篇名為C++: The Most Powerful Language for .NET Framework Programming文章中的對比表:

描述

C++/CLI

C#

建立參考型別的對象

ReferenceType^ h = gcnew ReferenceType;

ReferenceType h = new ReferenceType();

建立實值型別的對象

ValueType v(3, 4);

ValueType v = new ValueType(3, 4);

參考型別在堆棧上

ReferenceType h;

N/A

調用Dispose方法

ReferenceType^ h = gcnew ReferenceType;

delete h;

ReferenceType h = new ReferenceType();

((IDisposable)h).Dispose();

實現Dispose方法

~TypeName() {}

void IDisposable.Dispose() {}

實現Finalize 方法

!TypeName() {}

~TypeName() {}

裝箱(Boxing)

int^ h = 123;

object h = 123;

拆箱(Unboxing)

int^ hi = 123;

int c = *hi;

object h = 123;

int i = (int) h;

定義參考型別

ref class ReferenceType {};

ref struct ReferenceType {};

class ReferenceType {}

定義實值型別

value class ValueType {};

value struct ValueType {};

struct ValueType {}

使用屬性

h.Prop = 123;

int v = h.Prop;

h.Prop = 123;

int v = h.Prop;

定義屬性

property String^ Name 
{
    String^ get()
    {
        return m_value;
    }
    void set(String^ value)
    {
        m_value = value;
    }
}

string Name 
{
    get
    {
        return m_name;
    }
    set
    {
        m_name = value;
    }
}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.