strcpy在Windows上编译,但在Linux上不编译

时间:2019-06-21 15:21:59

标签: c++ strcpy

我正在学习C ++并试图编写通用代码(对不起,我不知道您如何称呼可以在Windows,Linux,MacOS等平台上编译的代码)。

我已经编写了函数trimLeft:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

const string rows = "rows:";
const string columns = "cols:";
const string data = "data:";

struct dimensions {
    int rows;
    int columns;
};

inline bool exists (const string& name) {
    ifstream f(name.c_str());
    return f.good();
}

string trimLeft(const string& input) {

    if ((input.empty()) || 
        ((input.at(0) != ' ') && (input.at(0) != '\t')))
        return input;
    else {
        char * tab2 = new char[input.length() + 1];
        char *trimmed = new char[input.length() + 1];

        strcpy(tab2, input.c_str());

        bool skip = true;
        int pos = 0;

        for (unsigned int i = 0; i < (input.length() + 1); i++) {
            if (skip) {
                if ((tab2[i] == ' ') || (tab2[i] == '\t'))
                    continue;
                else {
                    skip = false;

                    trimmed[pos] = tab2[i];
                    pos++;
                }
            }
            else {
                trimmed[pos] = tab2[i];

                if (tab2[i] == '\0')
                    break;
                else
                    pos++;
            }
        }

        string stringTrimmed(trimmed);

        return stringTrimmed;
    }
}

它在Windows中编译,显示以下警告:

  

警告C4996:'strcpy':此函数或变量可能不安全。   考虑改用strcpy_s。要禁用弃用,请使用   _CRT_SECURE_NO_WARNINGS。

但是在Linux中,请使用以下命令:

  

g ++ FormatMatrix.cpp -o格式

我得到:

error: ‘strcpy’ was not declared in this scope

每个操作系统的标头是否不同?

注意
而且,请停止投票否决:我已经收到消息了。

1 个答案:

答案 0 :(得分:1)

作为特定编译器的实现细节,完全可能的是,您所包含的另一个标头包含了<cstring>,其中包括了strcpy的声明。

为确保您的代码真正可移植且符合标准,请包括所调用的每个类和函数的头文件;永远不要认为您通过包含其他内容来获得另一个标头的功能。