Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><code>gnustl_static</code> is GNU stdlibc++ as it comes with gcc. It's <a href="http://gcc.gnu.org/onlinedocs/libstdc++/" rel="nofollow">official documentation is here</a>, but it's probably useless as tutorial, so preferably get some decent book on C++.</p> <p>The library does not appear to be cut down. It may look like that to you because standard C++ library defined in the specification is simply lot smaller than the one in Java. It has standard access to files, but no file manipulation, no threads, no network etc.</p> <p>In android <a href="http://pubs.opengroup.org/onlinepubs/009695399/mindex.html" rel="nofollow">POSIX</a> interface is generally available (plain C). If you want C++, try getting <a href="http://www.boost.org" rel="nofollow">boost</a>, which wraps the various system-specific interfaces in decent portable C++ components. However, many services on the Android platform won't be available except by going through the Java layer.</p> <p>Ad Edit: Standard library specification is owned by somebody, namely ISO. Unfortunately the standard is not freely downloadable from ISO, but searching the web reveals <a href="http://code.google.com/p/openassist/downloads/list" rel="nofollow">this</a>.</p> <p>Ad Edit2: The C++ standard library is based on the underlying C standard library. The C++ standard library has the extension-less headers, while the standard C library has headers with suffix <code>.h</code>. Both are defined by (different) ISO standards. The C library is most tied to the operating system (depends on specific method to make system calls), so it's provided with the system. On the other hand the C++ library is more tied to the compiler while it uses the C library to talk to the system, so it's provided with the compiler. That's why they live in different places.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload