91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中CLI模塊的基本類型有哪些

發布時間:2022-07-04 13:44:22 來源:億速云 閱讀:146 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“C++中CLI模塊的基本類型有哪些”,內容詳細,步驟清晰,細節處理妥當,希望這篇“C++中CLI模塊的基本類型有哪些”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

數值類型

對于基本的數值類型,在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 = '\0';

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++中CLI模塊的基本類型有哪些”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

正镶白旗| 隆林| 永德县| 榆社县| 灵武市| 平塘县| 平南县| 太仓市| 冀州市| 日土县| 郁南县| 铜陵市| 景宁| 闽侯县| 屏东县| 福鼎市| 阿合奇县| 兴文县| 廊坊市| 亳州市| 平江县| 荣昌县| 通江县| 聂荣县| 嘉黎县| 花莲市| 吉木乃县| 资讯| 新野县| 鹤壁市| 龙游县| 洪洞县| 鸡泽县| 永仁县| 浦北县| 饶河县| 微博| 郯城县| 锦屏县| 当涂县| 锡林郭勒盟|