⑴ linux下的c語言的頭文件在windows下頭文件是哪幾個
#include <assert.h> //設定插入點
#include <ctype.h> //字元處理
#include <errno.h> //定義錯誤碼
#include <float.h> //浮點數處理
#include <fstream.h> //文件輸入/輸出
#include <iomanip.h> //參數化輸入/輸出
#include <iostream.h> //數據流輸入/輸出
#include <limits.h> //定義各種數據類型最值常量
#include <locale.h> //定義本地化函數
#include <math.h> //定義數學函數
#include <stdio.h> //定義輸入/輸出函數
#include <stdlib.h> //定義雜項函數及內存分配函數
#include <string.h> //字元串處理
#include <strstrea.h> //基於數組的輸入/輸出
#include <time.h> //定義關於時間的函數
#include <wchar.h> //寬字元處理及輸入/輸出
#include <wctype.h> //寬字元分類
//////////////////////////////////////////////////////////////////////////
標准 C++ (同上的不再注釋)
#include <algorithm> //STL 通用演算法
#include <bitset> //STL 位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex> //復數類
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque> //STL 雙端隊列容器
#include <exception> //異常處理類
#include <fstream>
#include <functional> //STL 定義運算函數(代替運算符)
#include <limits>
#include <list> //STL 線性列表容器
#include <map> //STL 映射容器
#include <iomanip>
#include <ios> //基本輸入/輸出支持
#include <iosfwd> //輸入/輸出系統使用的前置聲明
#include <iostream>
#include <istream> //基本輸入流
#include <ostream> //基本輸出流
#include <queue> //STL 隊列容器
#include <set> //STL 集合容器
#include <sstream> //基於字元串的流
#include <stack> //STL 堆棧容器
#include <stdexcept> //標准異常類
#include <streambuf> //底層輸入/輸出支持
#include <string> //字元串類
#include <utility> //STL 通用模板類
#include <vector> //STL 動態數組容器
#include <cwchar>
#include <cwctype>
using namespace std;
//////////////////////////////////////////////////////////////////////////
C99 增加
#include <complex.h> //復數處理
#include <fenv.h> //浮點環境
#include <inttypes.h> //整數格式轉換
#include <stdbool.h> //布爾環境
#include <stdint.h> //整型環境
#include <tgmath.h> //通用類型數學宏
#include<conio.h> 說明調用DOS控制台I/O子程序的各個函數。
#include<sio.h> 包含字元串庫函數說明的頭文件
#include<slib.h> 包含動態存儲與釋放函數頭文件
⑵ C++ mfc中,類CString如何分割開啊
1. 標准C中的字元串
在標准C中沒有string這樣的數據類型,C中的字元串是有char類型的字元數組或者char類型的字元指針來實現的。例如:
char name[26]="This is a C-style string"; 或者
char *name="This is a C-style string";
類型的字元串以\0為結束標記,所佔內存是實際子符長度+1,其初始化和賦值都要逐個字元的賦值,修改不辨,粒度太小,很不直觀,是程序員分散了一些軟體的高級層面問題,如演算法,抽象數據類型或軟體構架。char *沒有構造函數,僅能由指針賦值,而且是一個極其危險的操作,在聲明char * 的時候如果沒有賦初值,建議先初始化為NULL,以免出現懸浮指針或者指向地址不明的指針,否則,出錯會讓你很爽!
標准C中是沒有string類型,但是在C中有string.h頭文件,需要注意的是此string.h中的string 非彼string,<string.h>頭文件中定義了一些我們經常用到的操作字元串的函數,如復制函數strcpy,連接字元串strcat,比較字元串strcmp,這些函數的操作對象都是指向char *的字元串。
2.標准C++中的string類
C++支持C風格字元串的使用,而且引入了string類的概念,string為標准模板類STL定義的字元串,幾乎可以從所有的字元串構造出來。
string字元串類的都文件是<string>,並且要和usingnamespace std; 一起使用。頭文件<string>和頭文件<string.h>沒有任何關系,前者是標准C++中的模板庫類,後者是標准C中的包含常用C字元串處理函數的頭文件,如strcmp,前者並非是後者的升級版。
要深刻理解標准C++中string是一個類, 如在標准C中定義如下:char * pt=NULL; 這無疑是正確的,但是在標准C++中定義 string *pt=NULL;這樣做編譯器不會有警告和錯誤,但是運行是就會有異常。這是因為string作為一個類,定義類的對象時要調用其構造函數的,上面的例子既沒有調用其構造函數,還把指針賦值為NULL,很明顯就會出錯的。正確的 方法是是new操作符,C++中的new不同於C中的malloc, new不但會分配一塊內存,還調用類的構造函數。string *pt=new("this is a c++-style string"); 或者不用指針 string str;系統自動調用默認的構造函數,構造一個string類的對象。
3. MFC中的CString類。
MFC中的字元串類是CString,封裝了string的東西,並增加了一些介面,在功能上完全兼容string類,而一些標準的C/C++不能直接對CString類進行操作,CString 類是微軟的visual c++提供的MFC裡面的一個類,所以只有支持MFC的工程才可以使用。如在linux上的工程就不能用CString了,只能用標准C++中的 string類了。另外,因為string類是在c++標准庫中,所以它被封裝在了std命名空間中,使用之前需要聲明using namespace std;而CString類並不在std命名空間中,因為它不是c++的標准庫,只是微軟的一個封裝庫。這點看來用string類的程序的移植性更好。CString和string提供的介面方法不同,對char*的轉換也不同。下
⑶ CString 在C++中要導什麼頭文件
1、打開抄Dev-C++軟體,單擊文件襲菜單中的保存按鈕。
⑷ 使用Cstring類需要用哪個頭文件
VS中只要#include <atlstr.h>
完美解決
⑸ CString在哪個頭文件里
CString
是VC++裡面的類,C++Builder裡面沒有這個類(直接用String定義)
比如:
在VC++中定專義字元串
CString
strname;
而在C++Builder裡面:屬String
strname。
⑹ CString類型要包含什麼頭文件
#include <stdio.h>
#include <afx.h>//CString的頭文件
void main()
{
CString str;//這是你要聲明的
printf(str);屏幕上列印str
}
⑺ 頭文件里#include <cstring>是什麼意思
這是個庫函數,有了這個頭文件可以使用一系列有關字元串的操作,比方說判斷長度,復制,比較大小等等。
⑻ cstring頭文件里的函數怎麼用
跟C里的一樣,看看MSDN就知道了,上面英語挺簡單的;
String-Manipulation Routines
Routine Use .NET Framework equivalent
strcoll, wcscoll, _mbscoll, _strcoll_l, _wcscoll_l, _mbscoll_l, _stricoll, _wcsicoll, _mbsicoll, _stricoll_l, _wcsicoll_l, _mbsicoll_l, _strncoll, _wcsncoll, _mbsncoll, _strncoll_l, _wcsncoll_l, _mbsncoll_l, _strnicoll, _wcsnicoll, _mbsnicoll, _strnicoll_l, _wcsnicoll_l, _mbsnicoll_l
Compare two character strings using code page information (_mbsicoll and _mbsnicoll are case-insensitive)
System::String::Compare
_mbsdec, _mbsdec_l, _strdec, _wcsdec
Move string pointer back one character
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.
_mbsinc, _mbsinc_l, _strinc, _wcsinc
Advance string pointer by one character
Not applicable.
_mbsnbcat, _mbsnbcat_l, _mbsnbcat_s, _mbsnbcat_s_l
Append, at most, first n bytes of one character string to another
Not applicable.
_mbsnbcmp, _mbsnbcmp_l
Compare first n bytes of two character strings
Not applicable.
_mbsnbcnt, _mbsnbcnt_l, _mbsnccnt, _mbsnccnt_l, _strncnt, _wcsncnt
Return number of character bytes within supplied character count
Not applicable.
_mbsnbcpy, _mbsnbcpy_l, _mbsnbcpy_s, _mbsnbcpy_s_l
Copy n bytes of string
Not applicable.
_mbsnbicmp, _mbsnbicmp_l
Compare n bytes of two character strings, ignoring case
Not applicable.
_mbsnbset, _mbsnbset_l
Set first n bytes of character string to specified character
Not applicable.
_mbsnbcnt, _mbsnbcnt_l, _mbsnccnt, _mbsnccnt_l, _strncnt, _wcsncnt
Return number of characters within supplied byte count
Not applicable.
_mbsnextc, _mbsnextc_l, _strnextc, _wcsnextc
Find next character in string
Not applicable.
_mbsninc, _mbsninc_l, _strninc, _wcsninc
Advance string pointer by n characters
Not applicable.
_mbsspnp, _mbsspnp_l, _strspnp, _wcsspnp
Return pointer to first character in given string that is not in another given string
Not applicable.
_scprintf, _scprintf_l, _scwprintf, _scwprintf_l
Return the number of characters in a formatted string
Not applicable.
_snscanf, _snscanf_l, _snwscanf, _snwscanf_l, _snscanf_s, _snscanf_s_l, _snwscanf_s, _snwscanf_s_l
Read formatted data of a specified length from the standard input stream.
Not applicable.
sscanf, _sscanf_l, swscanf, _swscanf_l, sscanf_s, _sscanf_s_l, swscanf_s, _swscanf_s_l
Read formatted data of a specified length from the standard input stream.
Not applicable.
sprintf, _sprintf_l, swprintf, _swprintf_l, __swprintf_l, sprintf_s, _sprintf_s_l, swprintf_s, _swprintf_s_l, _sprintf_p, _sprintf_p_l, _swprintf_p, _swprintf_p_l
Write formatted data to a string
System::String::Format
strcat, wcscat, _mbscat, strcat_s, wcscat_s, _mbscat_s
Append one string to another
System::String::Concat
strchr, wcschr, _mbschr, _mbschr_l
Find first occurrence of specified character in string
System::String::IndexOf
strcmp, wcscmp, _mbscmp
Compare two strings
System::String::CompareOrdinal
strcoll, wcscoll, _mbscoll, _strcoll_l, _wcscoll_l, _mbscoll_l, _stricoll, _wcsicoll, _mbsicoll, _stricoll_l, _wcsicoll_l, _mbsicoll_l, _strncoll, _wcsncoll, _mbsncoll, _strncoll_l, _wcsncoll_l, _mbsncoll_l, _strnicoll, _wcsnicoll, _mbsnicoll, _strnicoll_l, _wcsnicoll_l, _mbsnicoll_l
Compare two strings using current locale code page information (_stricoll, _wcsicoll, _strnicoll, and _wcsnicoll are case-insensitive)
System::String::Compare
strcpy, wcscpy, _mbscpy, strcpy_s, wcscpy_s, _mbscpy_s
Copy one string to another
System::String::Copy
strcspn, wcscspn, _mbscspn, _mbscspn_l
Find first occurrence of character from specified character set in string
System::String::Substring
_strp, _wcsp, _mbsp, _strp_dbg, _wcsp_dbg
Duplicate string
System::String::Clone
strerror, _strerror, _wcserror, __wcserror, strerror_s, _strerror_s, _wcserror_s, __wcserror_s
Map error number to message string
System::Exception::Message
strftime, wcsftime, _strftime_l, _wcsftime_l
Format date-and-time string
System::Convert::ToString
_stricmp, _wcsicmp, _mbsicmp, _stricmp_l, _wcsicmp_l, _mbsicmp_l
Compare two strings without regard to case
System::String::Compare
strlen, strlen_l, wcslen, wcslen_l, _mbslen, _mbslen_l, _mbstrlen, _mbstrlen_l, strnlen, strnlen_l, wcsnlen, wcsnlen_l, _mbsnlen, _mbsnlen_l, _mbstrnlen, _mbstrnlen_l
Find length of string
System::String::Length
_strlwr, _wcslwr, _mbslwr, _strlwr_l, _wcslwr_l, _mbslwr_l, _strlwr_s, _strlwr_s_l, _mbslwr_s, _mbslwr_s_l, _wcslwr_s, _wcslwr_s_l
Convert string to lowercase
System::String::ToLower
strncat, _strncat_l, wcsncat, wcsncat_l, _mbsncat _mbsncat_l, strncat_s, _strncat_s_l, wcsncat_s, _wcsncat_s_l, _mbsncat_s, _mbsncat_s_l
Append characters of string
System::String::Concat
strncmp, wcsncmp, _mbsncmp, _mbsncmp_l
Compare characters of two strings
System::String::Compare
strncpy, _strncpy_l, wcsncpy, _wcsncpy_l, _mbsncpy, _mbsncpy_l, strncpy_s, _strncpy_s_l, wcsncpy_s, _wcsncpy_s_l, _mbsncpy_s, _mbsncpy_s_l
Copy characters of one string to another
System::String::Copy
_strnicmp, _wcsnicmp, _mbsnicmp, _strnicmp_l, _wcsnicmp_l, _mbsnicmp_l
Compare characters of two strings without regard to case
System::String::Compare
_strnset, _strnset_l, _wcsnset, _wcsnset_l, _mbsnset, _mbsnset_l
Set first n characters of string to specified character
System::String::Replace
strpbrk, wcspbrk, _mbspbrk, _mbspbrk_l
Find first occurrence of character from one string in another string
System::String::IndexOfAny
strrchr, wcsrchr, _mbsrchr, _mbsrchr_l
Find last occurrence of given character in string
System::String::LastIndexOf
_strrev, _wcsrev, _mbsrev, _mbsrev_l
Reverse string
Not applicable.
_strset, _strset_l, _wcsset, _wcsset_l, _mbsset, _mbsset_l
Set all characters of string to specified character
Not applicable.
strspn, wcsspn, _mbsspn, _mbsspn_l
Find first substring from one string in another string
System::String::Substring
strstr, wcsstr, _mbsstr, _mbsstr_l
Find first occurrence of specified string in another string
System::String::IndexOf
strtok, _strtok_l, wcstok, _wcstok_l, _mbstok, _mbstok_l, strtok_s, _strtok_s_l, wcstok_s, _wcstok_s_l, _mbstok_s, _mbstok_s_l
Find next token in string
Not applicable.
_strupr, _strupr_l, _mbsupr, _mbsupr_l, _wcsupr_l, _wcsupr, _strupr_s, _strupr_s_l, _mbsupr_s, _mbsupr_s_l, _wcsupr_s, _wcsupr_s_l
Convert string to uppercase
System::String::ToUpper
strxfrm, wcsxfrm, _strxfrm_l, _wcsxfrm_l
Transform string into collated form based on locale-specific information
Not applicable.
vsprintf, _vsprintf_l, vswprintf, _vswprintf_l, __vswprintf_l, vsprintf_s, _vsprintf_s_l, vswprintf_s, _vswprintf_s_l, _vsprintf_p, _vsprintf_p_l, _vswprintf_p, _vswprintf_p_l
Write formatted output using a pointer to a list of arguments
System::String::Format
vsnprintf, _vsnprintf, _vsnprintf_l, _vsnwprintf, _vsnwprintf_l, vsnprintf_s, _vsnprintf_s, _vsnprintf_s_l, _vsnwprintf_s, _vsnwprintf_s_l
Write formatted output using a pointer to a list of arguments
System::String::Format