blob: 3bd3f8e27103e1a54a7010f0b0e8e24e0692320f [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed
with this work for additional information regarding copyright
ownership. The ASF licenses this file to you under the Apache
License, Version 2.0 (the License); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing
permissions and limitations under the License.
Copyright 1999-2007 Rogue Wave Software, Inc.
-->
<HTML>
<HEAD>
<TITLE>Fundamental Datatypes</TITLE>
<LINK REL=StyleSheet HREF="../rw.css" TYPE="text/css" TITLE="Apache stdcxx Stylesheet"></HEAD>
<BODY BGCOLOR=#FFFFFF>
<A HREF="21-1.html"><IMG SRC="images/bprev.gif" WIDTH=20 HEIGHT=21 ALT="Previous file" BORDER=O></A><A HREF="noframes.html"><IMG SRC="images/btop.gif" WIDTH=56 HEIGHT=21 ALT="Top of Document" BORDER=O></A><A HREF="booktoc.html"><IMG SRC="images/btoc.gif" WIDTH=56 HEIGHT=21 ALT="Contents" BORDER=O></A><A HREF="tindex.html"><IMG SRC="images/bindex.gif" WIDTH=56 HEIGHT=21 ALT="Index page" BORDER=O></A><A HREF="21-3.html"><IMG SRC="images/bnext.gif" WIDTH=25 HEIGHT=21 ALT="Next file" BORDER=O></A><DIV CLASS="DOCUMENTNAME"><B>Apache C++ Standard Library User's Guide</B></DIV>
<H2>21.2 Fundamental Datatypes</H2>
<A NAME="idx448"><!></A>
<A NAME="idx449"><!></A>
<P>The C++ Standard Library describes a specific type by providing a specialization of the<SAMP> numeric_limits</SAMP> template for the type. Static member functions and static constant data members then provide information specific to the type. The C++ Standard Library includes descriptions of the fundamental datatypes given in <A HREF="21-2.html#Table&nbsp;21">Table&nbsp;21</A>.</P>
<H4><A NAME="Table&nbsp;21">Table&nbsp;21: Fundamental datatypes of the C++ Standard Library&nbsp;</A></H4>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="3">
<tr><td valign=top><B><SAMP>bool</SAMP></B>
</td><td valign=top><B><SAMP>char</SAMP></B>
</td><td valign=top><B><SAMP>int</SAMP></B>
</td><td valign=top><B><SAMP>float</SAMP></B>
</td></tr>
<tr><td valign=top colspan=1 rowspan=6>&nbsp;
</td><td valign=top><P CLASS="TABLE"><SAMP>signed char</SAMP></P>
</td><td valign=top><P CLASS="TABLE"><SAMP>short</SAMP></P>
</td><td valign=top><P CLASS="TABLE"><SAMP>double</SAMP></P>
</td></tr>
<tr><td valign=top><P CLASS="TABLE"><SAMP>unsigned char</SAMP></P>
</td><td valign=top><P CLASS="TABLE"><SAMP>long</SAMP></P>
</td><td valign=top><P CLASS="TABLE"><SAMP>long double</SAMP></P>
</td></tr>
<tr><td valign=top colspan=1 rowspan=4>&nbsp;
</td><td valign=top><P CLASS="TABLE"><SAMP>wchar_t</SAMP></P>
</td><td valign=top colspan=1 rowspan=4>&nbsp;
</td></tr>
<tr><td valign=top><P CLASS="TABLE"><SAMP>unsigned short</SAMP></P>
</td></tr>
<tr><td valign=top><P CLASS="TABLE"><SAMP>unsigned int</SAMP></P>
</td></tr>
<tr><td valign=top><P CLASS="TABLE"><SAMP>unsigned long</SAMP></P>
</td></tr>
</TABLE>
<P>Certain implementations may also provide information on other datatypes. Whether or not an implementation is described can be discovered using the static data member <SAMP>is_specialized</SAMP>. For example, the following is legal, and will indicate that the <B><I><A HREF="../stdlibref/basic-string.html">string</A></I></B> datatype is not described by this mechanism.</P>
<UL><PRE>
std::cout &lt;&lt; "are strings described " &lt;&lt;
std::numeric_limits&lt;string&gt;::is_specialized &lt;&lt; std::endl;
</PRE></UL>
<P>For datatypes that do not have a specialization, the values yielded by the functions and data members in <SAMP>numeric_limits</SAMP> are generally zero or <SAMP>false</SAMP>.</P>
<BR>
<HR>
<A HREF="21-1.html"><IMG SRC="images/bprev.gif" WIDTH=20 HEIGHT=21 ALT="Previous file" BORDER=O></A><A HREF="noframes.html"><IMG SRC="images/btop.gif" WIDTH=56 HEIGHT=21 ALT="Top of Document" BORDER=O></A><A HREF="booktoc.html"><IMG SRC="images/btoc.gif" WIDTH=56 HEIGHT=21 ALT="Contents" BORDER=O></A><A HREF="tindex.html"><IMG SRC="images/bindex.gif" WIDTH=56 HEIGHT=21 ALT="Index page" BORDER=O></A><A HREF="21-3.html"><IMG SRC="images/bnext.gif" WIDTH=20 HEIGHT=21 ALT="Next file" BORDER=O></A>
<!-- Google Analytics tracking code -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-1775151-1";
urchinTracker();
</script>
<!-- end of Google Analytics tracking code -->
</BODY>
</HTML>