⑴ 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