首頁 > 軟體

C++超集C++/CLI模組的基本型別

2022-07-04 14:01:43

數值型別

對於基本的數值型別,在C++/CLI中是可以直接對映為託管型別的數值的,可以同時應用於託管型別和非託管型別,編譯器會將其自動轉換。

基本型別

System名稱空間中對應的類

註釋/用法

bool

System::Boolean

bool dirty = false;

char

System::SByte

char sp = ' ';

signed char

System::SByte

signed char ch = -1;

unsigned char

System::Byte

unsigned char ch = '';

wchar_t

System::Char

wchar_t wch = ch;

short

System::Int16

short s = ch;

unsigned short

System::UInt16

unsigned short s = 0xffff;

int

System::Int32

int ival = s;

unsigned int

System::UInt32

unsigned int ui = 0xffffffff;

long

System::Int32

long lval = ival;

unsigned long

System::UInt32

unsigned long ul = ui;

long long

System::Int64

long long etime = ui;

unsigned long long

System::UInt64

unsigned long long mtime = etime;

float

System::Single

float f = 3.14f;

double

System::Double

double d = 3.14159;

long double

System::Double

long double d = 3.14159L;

字串

字串CLI已經內建了:System::String,但C++的常用字串有char*、wchar_t*、std::string等好多種,編譯器提供了char*、wchar_t*到System::String的自動轉換:

System::String^ s = "hello worold";
System::String^ s2 = L"hello worold";

另外,也可以使用gcnew建立託管字串:

System::String^ s = gcnew String("hello worold");

但是,對於System::String轉char*,系統沒有直接的語法支援。方法有很多種,我通常使用如下方式來轉換:

IntPtr ip = Marshal::StringToHGlobalAnsi(str);
const char* ch = static_cast<const char*>(ip.ToPointer());
//do something with ch
Marshal::FreeHGlobal(ip);

這裡有個需要注意的地方是在使用完轉換出來的const char*後需要釋放掉轉換過程中的Intptr,如果沒有太多需要考慮效能的地方,大可以使用一個std::string將其拷貝走,寫成如下函數形式:  

    #include <string>

    using namespace std;
    using namespace System;
    using namespace System::Runtime::InteropServices;

    string cast_to_string(String^ str)
    {
        IntPtr ip = Marshal::StringToHGlobalAnsi(str);
        const char* ch = static_cast<const char*>(ip.ToPointer());
        string stdStr = ch;
        Marshal::FreeHGlobal(ip);

        return stdStr;
    }

 參考文章:如何:使用 C++ 互操作封送 ANSI 字串

結構體

除了基本型別外,有時我們也需要對結構體進行對映,MS也提供了相應的對映函數,非常方便。具體可參考MSDN文章擴擴充套件封送處理庫,這裡就不多介紹了。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com