Differences in Microsofts C++ STL for Windows CE?

耗尽温柔 提交于 2019-12-01 12:14:49

问题


anyone know of a complete list of the differences in Microsofts implementation of STL for Windows CE, compared to the full STL for desktop? I am using WinCE 6.0, with VS 2005.

I am a bit suprised that they seem to have removed so many things; for GCC it is almost the same. Thanks!


回答1:


according to Standard C++ Library Reference for Devices, the (only) differences are:

New Functionality

Stream support has been added to this version of the Standard C++ Library.

Unsupported Functionality

  • The Standard C++ Library for devices does not include locale support.
  • uncaught_exception is only supported on Windows CE 5.0 and higher versions, including Windows Mobile 2005 platforms.

Unsupported Headers

The device version of the Standard C++ Library does not support the following headers:

  • <cerrno>
  • <csignal>
  • <locale>


来源:https://stackoverflow.com/questions/1373540/differences-in-microsofts-c-stl-for-windows-ce

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!