English 中文(简体)
• 放大面积——t 和 wchar_t Portable?
原标题:Making size_t and wchar_t portable?
  • 时间:2010-10-06 21:30:15
  •  标签:
  • c++
  • c
  • size-t

我的理解是,大小(t and wchar_t)的代表性完全是平台/比较具体。 例如,我读到的是,目前,对六氯环己烷的湿果通常为32比特,但视窗为16比特。 在我自己的法典中,我能将这些内容标准化,使之达到一定规模(直线、长期等),同时与现有的标准C图书馆和两个平台的职能保持后向可比性吗?

我的目标主要是做像他们这样的事情,这样他们就是一个固定的规模。 如果不打碎东西,这是否可行? 我是否应该这样做? 是否有更好的办法?

<><>UPDATE: 我之所以要这样做,是因为我的扼杀式编码在Windows和Lino上是一致的。

感谢!

最佳回答

你不想重新界定这些类型。 相反,你可以使用诸如<代码>int32_t或int16_t(签名32-bit和16-bit)等类型,它们是<代码><stdint.h> in the C standard Library。

如果您重新使用C++,C++0x将添加char16_tchar32_t,这些均为UTF-16和UTF-32所设计的新类型(不仅仅是整体类型)。

http://icu-project.org/“rel=“nofollow” 统法协会采用依赖平台的方式。 然后,你只能使用<代码>UChar<>/code>的类型,这种类型将永远是UTF-16;你仍然需要仔细了解终点。 国际电算中心还提供converters 至Camhar(UTF-16)。

问题回答

参看C99s &C++0x s<stdint.h>/<cstdint> 负责人。 定义了<代码>uint8_t 和int64_t等类型。

如果你没有这些负责人,你可以使用<条码>cstdint.hpp。

页: 1 试图使用某种类型“固定”性质的资金问题在于,你最终采用某种平台上符合功能和大体字面的构造的东西,而其他平台则不是。

如果你想要在所有平台上采用同样的方式,那么你就只能抽出一个规模和签字。 你们想要不签署第8条轨道“证明人”或签署64条轨道“证明人”? 你们可以在任何具有适当规模(并非全部)分类的平台上这样做。 但是,就语言而言,它们并不真正具有属性,因此并不期望能够打电话到<条码><>>>>>>> 或<条码>>上/code>, 或者在字面上安装一个ice。 缩略语为(现成,改为)char*,而不是sign char*unsign char*。 字面宽广的字面是wchar_t*,相当于 ~>>> > >其他类型,但不一定是你想要的。

因此,你必须抓紧,在内部使用,确定你所需要的各种职能,执行这些职能,然后根据需要将平台转换成/从平台上编码,以防执行需要的职能。 utf-8是一种体面的选择,因为Cstring的大多数功能仍然“工作”,即即使没有完全正确,这些功能也非常有用。

wchar_t将变成一个比大小更重要的地区。 人们可以假设面积(t)(8 bytes)的最大大小,并在撰写之前将所有变数提交(或备份)。 另一点是,如果你试图写/阅读某种双亲代表的话,你就会通过命令解决问题。 任何方面, w园都可能代表一个系统上的“utf-32”编码(我认为,林丹确实如此),并且可以代表UTF-16在另一个系统中编码(窗口就是这样)。 如果你试图在平台之间建立一种标准格式,你将不得不解决所有这些问题。

就内部而言,与UTF-8公司合作,在通过视窗功能的论据时,立即改为UTF-16。 可能永远不需要UTF-32。 由于处理个人特性而不是扼杀通常是错误的(根据统法协会的法理),因此利用或实现UTF-8号护法的正常化比UTF-32号指示更为困难。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?