Slice bool and
string map to C++
bool and
std::string. The remaining built-in Slice types map to C++ type definitions instead of C++ native types. This allows the Ice run time to provide a definition as appropriate for each target architecture. (For example,
Ice::Int might be defined as
long on one architecture and as
int on another.)
Note that Ice::Byte is a typedef for
unsigned char. This guarantees that byte values are always in the range
0..255.
You can use a metadata directive, ["cpp:type:wstring"], to map strings to C++
std::wstring. This is useful for applications that use languages with alphabets that cannot be represented in 8‑bit characters. The metadata directive can be applied to any Slice construct. For containers (such as modules, interfaces, or structures), the metadata directive applies to all strings within the container. A corresponding metadata directive,
["cpp:type:string"] can be used to selectively override the mapping defined by the enclosing container. For example:
With these metadata directives, the strings are mapped as indicated by the comments. By default, narrow strings are encoded as UTF‑8, and wide strings use Unicode in an encoding that is appropriate for the platform on which the application executes. You can override the encoding for narrow and wide strings by registering a string converter with the Ice run time. (See
Section 32.25 for details.)