红联Linux门户
Linux帮助

关于ubuntu和VS中编译C++报错没有定义函数strcpy

发布时间:2017-05-30 10:31:40来源:linux网站作者:独钓寒江雪一路
今天在Ubuntu中用g++编译下面这个程序的时候,一直报错说没有定义函数strcpy;
#include<iostream>
#include<string>
using namspace std;
int main()
{
char a[]="hello ubuntu";
char b[]="hello";
strcpy(a,b);
cout<<a<<endl;
return 0;
 
后来换成#include<string.h>就可以了,但是我在VS中编译这个程序没有任何问题,没怎么搞懂这个问题。而且在VS中只要用这两个里面的一个#include<string.h>,#include<string>就可以调用strcpy 函数。
是因为ubuntu中没有采用C++ 标准库么?我知道#include<string.h>,#include<string>是属于不同的头文件,但是我不太理解为什么VS中可以而Ubuntu中就不可以呢?这是一个疑问,明白的网友可以解释下。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/31160.html