溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python中如何移植c到d03

發(fā)布時(shí)間:2021-09-18 10:35:42 來(lái)源:億速云 閱讀:173 作者:柒染 欄目:編程語(yǔ)言

這篇文章給大家介紹python中如何移植c到d03,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

// In C
extern void someCFunction(void);
// In D
extern( C ) void someCFunction();

extern(Windows),則表明stdcall調(diào)用約定.在c頭上類似__stdcall前綴.在窗口上,則是類似WINAPI, APIENTRY,和PASCAL的東西.

// In C
#define WINAPI __stdcall
extern WINAPI void someWin32Function(void);

// In D
extern( Windows ) void someWin32Function();

extern(System)在綁定OpenGL等庫(kù)時(shí)有用.在窗口中用stdcall,在其他系統(tǒng)用cdecl.

// In C
#ifdef _WIN32
#include
#define MYAPI WINAPI
#else
#define MYAPI
#endif
extern MYAPI void someFunc(void);
// In D
extern(System) void someFunc();
//跟隨系統(tǒng)走

實(shí)踐中有許多技術(shù)來(lái)添加調(diào)用約定,要仔細(xì)檢查頭.在d中,可以統(tǒng)一起來(lái),而不是挨個(gè)加:

//屬性塊
extern( C )
{
void functionOne();
double functionTwo();
}

//或這樣
extern( C ):
void functionOne();

void functionTwo();


d曾經(jīng)有Typedefs,其創(chuàng)建新類型,而不是別名.d的別名,則不創(chuàng)建新類型,只是另外一個(gè)名字.typedef已過(guò)時(shí),除了在構(gòu)中,別名是c的typedef在d的等價(jià)物.c中有大量typedef.

typedef int foo_t;
typedef float bar_t;

d接口中最好保留原型名.d接口要盡量兼容c接口.這樣,示例啊,其他代碼啊都可以容易的移植過(guò)來(lái).

第一件事是如何將整/浮轉(zhuǎn)至d.對(duì)接細(xì)節(jié)文檔
這樣:

alias int foo_t;
alias float bar_t;

注意長(zhǎng)/正長(zhǎng).

// C頭
typedef long mylong_t;
typedef unsigned long myulong_t;

//D模塊
import core.stdc.config;

//導(dǎo)入是私,但別名是公,外部可見(jiàn)
alias c_long mylong_t;
alias c_ulong myulong_t;

長(zhǎng)正長(zhǎng)見(jiàn)入門

翻譯c的stdint.h時(shí),兩種方法:

// From SDL_stdinc.h
typedef int8_t Sint8;
typedef uint8_t Uint8;
typedef int16_t Sint16;
typedef uint16_t Uint16;
...

// In D, 不用core.stdc.stdint
alias byte Sint8;
alias ubyte Uint8;
alias short Sint16;
alias ushort Uint16;
...

//用導(dǎo)入
import core.stdc.stdint;

alias int8_t Sint8;
alias uint8_t Uint8;
alias int16_t Sint16;
alias uint16_t Uint16;
...

用本地類型,長(zhǎng)度固定,很直接.用core.stdc.stdint,復(fù)制了一份c頭,用別名替換typedef.

關(guān)于python中如何移植c到d03就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI