共用方式為


<cctype>

定義傳統上定義標準的 c 程式庫標頭 <ctype.h> 中的巨集。

#if <TRADITIONAL C HEADERS>
   #include <ctype.h>
namespace std {
   using ::isalnum; 
   using ::isalpha; 
   using ::iscntrl;
   using ::isdigit; 
   using ::isgraph; 
   using ::islower;
   using ::isprint; 
   using ::ispunct; 
   using ::isspace;
   using ::isupper; 
   using ::isxdigit; 
   using ::tolower;
   using ::toupper;
}

#undef isalnum
#undef isalpha
#undef isblank
#undef iscntrl
#undef isdigit
#undef isgraph
#undef islower
#undef isprint
#undef ispunct
#undef isspace
#undef isupper
#undef isxdigit
#undef tolower
#undef toupper

#endif

備註

包括此標頭檔也可確保使用標準的 c 程式庫的標頭中的外部連結所宣告的名稱宣告在標準命名空間。 在此實作中,名稱也不也可以宣告全域命名空間,視特定轉譯的環境中。

請參閱

參考

標準 C++ 程式庫概觀

在標準 C++ 程式庫中的執行緒安全

其他資源

標頭檔