C++ POCO庫中文編程參考指南(2) 基礎資料型別 (Elementary Data Type)(Poco/Types.h)

來源:互聯網
上載者:User

基本類型在Poco/Types.h標頭檔中。以下以 GNU C/C++ 和 CLang 為例。不 過要強調的是,POCO 有極好的跨平台性,你能想到的平台,幾乎都可以運行 POCO。

1 有符號整型

typedef signed char            Int8;

typedef signed short           Int16;

typedef signed int             Int32;

2 無符號整型

typedef unsigned char          UInt8;

typedef unsigned short         UInt16;

typedef unsigned int           UInt32;

3 Pointer or Handler

typedef signed long            IntPtr;

typedef unsigned long          UIntPtr;

4 64 位元整型

考慮了 32 位機和 64 位元機的情況

#if defined(__LP64__)       #define POCO_PTR_IS_64_BIT 1       #define POCO_LONG_IS_64_BIT 1       typedef signed long        Int64;       typedef unsigned long      UInt64;   #else       typedef signed long long   Int64;       typedef unsigned long long UInt64;   #endif   #define POCO_HAVE_INT64 1

-

來自柳大的CSDN部落格: Blog.CSDN.net/Poechant

查看全套文章:http://www.bianceng.cn/Programming/cplus/201301/35022.htm

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.