c++ - 转换警告。和类错误

标签 c++ arrays class object pointers

我正在学习 C++,在我现在正在做的作业中,我收到了一堆警告,我怀疑这些警告也导致了我遇到的两个错误。问题是出现警告的行是他给我们的行(其中之一),所以我认为代码一定是正确的。这使我相信我的类声明或构造函数中存在问题。任何人都可以发现任何错误吗?

警告(针对 fillSystemCommandList 函数的每一行)是 从字符串文字到“char *”的转换已弃用

错误是 体系结构 x86_64 的 undefined symbol : “COMMAND::COMMAND(char*, int)”,引用自: system_utilities.o 中的 fillSystemCommandList() ld: 找不到体系结构 x86_64 的符号 clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)

您可以跳过 ParseCommandLine 函数,我认为它没问题。我只是包含它以便我可以拥有整个文件(顺便说一句,这不是我的主要内容。)

其他注意事项: -systemCommands 数组应该是长度为 NUMBER_OF_COMMANDS 的 COMMAND 指针(我想我做对了)

-fillSystemCommandList 函数应该使用包含指向命令字符串和相应定义常量的指针的结构填充 systemCommands 数组。

-我知道这段代码几乎全是 C 语言,这又是因为我上的课是 C++ 入门课。

#include "system_utilities.h"
#include "definitions.h"
using namespace std;


int getCommandNumber(char *s);

class COMMAND {
    char* pointertochar;
    int* pointertoint;


public:
    COMMAND(char*, int);
    int amIThisCommand(char*);
};

int COMMAND::amIThisCommand(char* command){
    return 0;
}

COMMAND* systemCommands[NUMBER_OF_COMMANDS];



int parseCommandLine(char cline[], char *tklist[]){
    int i;
    int length; //length of line
    int count = 0; //counts number of tokens
    int toklength = 0; //counts the length of each token
    length = strlen(cline);
    for (i=0; i < length; i++) {   //go to first character of each token

        if (((cline[i] != ' ' && cline[i-1]==' ') || i == 0)&& cline[i]!= '"') {



            while ((cline[i]!=' ')&& (cline[i] != '\0') && (cline[i] != '\r')){
                toklength++;
                i++;
            }
          //---------------
        tklist[count] = (char *) malloc( toklength +1);
        memcpy(tklist[count], &cline[i-toklength], toklength);
        tklist[count][toklength]='\0';
            //cout << "\n" << tklist[count] << "\n";
            //cout << "\n" << i << "\n";
            //cout << "\n" << toklength << "\n";
        //--------------
            count ++;
            toklength = 0;
        }

        if (cline[i] == '"') {
            do {
                toklength++;
                i++;
                /*if (cline[i] == ' ') {
                    toklength--;
                }*/
            } while (cline[i]!='"');

            //--------------
            tklist[count] = (char *) malloc( toklength +1);
            memcpy(tklist[count], &cline[i-toklength+1], toklength-1);
            tklist[count][toklength]='\0';
            //cout << "\n" << tklist[count] << "\n";
            //cout << "\n" << i << "\n";
            //cout << "\n" << toklength << "\n";

            //--------------
            count ++;
            toklength = 0;
        }

    }

    return count;



}

int getCommandNumber(char *s) {

    /*switch (*s) {
       // case "halt":
            return HALT;
            break;

        default:
            break;
    }*/
    return 0;

}

void fillSystemCommandList() {

    systemCommands[0] = new COMMAND("halt", HALT);
    systemCommands[1] = new COMMAND("status", STATUS);
    systemCommands[2] = new COMMAND("time_click", TIME_CLICK);
    systemCommands[3] = new COMMAND("new_sensor", NEW_SENSOR);
    systemCommands[4] = new COMMAND("new_sensor_node", NEW_SENSOR_NODE);
    systemCommands[5] = new COMMAND("new_network", NEW_NETWORK);
    systemCommands[6] = new COMMAND("add_sensor_to_node", ADD_SENSOR_TO_NODE);
    systemCommands[7] = new COMMAND("add_node_to_network", ADD_NODE_TO_NETWORK);
    systemCommands[8] = new COMMAND("sensor_command", SENSOR_COMMAND);

}

再次感谢您提供的任何帮助!

最佳答案

systemCommands 是一类 COMMAND 对象。 COMMAND 类具有 char* 类型的成员,但是:"halt" in

   systemCommands[0] = new COMMAND("halt", HALT);

属于 const char*,因此您收到了该警告消息。您没有定义 COMMAND 类的构造函数。

  COMMAND(const char*, int); //needs to be defined. note ptr is const

因此,您在执行以下操作时遇到了错误:

  systemCommands[0] = new COMMAND("halt", HALT);

它尝试使用原型(prototype)调用构造函数:COMMAND(char*, int);

关于c++ - 转换警告。和类错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16628952/

相关文章:

c++ - Android NDK 有 sleep() 函数吗?

javascript - 您可以使用数组的值作为比较吗

c++ - 定义需要在运行时设置的 const static

c++ - 意外标记附近出现语法错误 '('

c++ - (opencv rc1) 是什么导致 Mat 乘法比每像素乘法慢 20 倍?

c++ - 如何在 VS2017 中编译一个不带/Za 的文件(其余带/Za)?

java - 是什么让 String 不可变?

Javascript 嵌套 for 循环和 array.reduce

c - 数组在c中如何工作?

php - PHP : functions, 或类中 API 的最佳实践?