c++ - 解决链接器错误 : undefined reference to static class members

标签 c++ arduino static-members

我的代码是 Arduinoish。我打开了详细编译,这样我就可以验证所有 .o 文件确实正确地传递给了链接器,并且它们是(下面的链接器命令)。这让我相信这是某种语法错误。

谷歌搜索错误“undefined reference to in function”会产生很多结果,答案包括“像这样将 foo.o 添加到您的链接器命令”等。

我希望解决方案就像缺少点或 -> 某处一样简单。

我在一个文件中收到来自链接器的这一系列错误:

SerialServoControl.cpp.o: In function `SerialServoControl::send(int, int)':
SerialServoControl.cpp:31: undefined reference to `SerialServoControl::_serial'
SerialServoControl.cpp:31: undefined reference to `SerialServoControl::_serial'
SerialServoControl.cpp.o: In function `SerialServoControl::init(char, char)':
SerialServoControl.cpp:9: undefined reference to `SerialServoControl::_tx'
SerialServoControl.cpp:10: undefined reference to `SerialServoControl::_rx'

.h 文件:

#ifndef SERIALSERVOCONTROL_H
#define SERIALSERVOCONTROL_H

#include "NewSoftSerial.h"

class SerialServoControl {
    public:
          //                             rx, tx
          static NewSoftSerial _serial;//(9, 8);

          int _servo_id;
          static char _tx;
          static char _rx;

          static void init(char tx, char rx);
          static void send(int servo_id, int angle);
          void setup(int servo_id);
          void set(int spot);
};

#endif

和 .cpp 文件:

#ifndef SERIALSERVOCONTROL_CPP
#define SERIALSERVOCONTROL_CPP

#include "WProgram.h"
#include "SerialServoControl.h"

//static
void SerialServoControl::init(char tx, char rx){
    _tx = tx;
    _rx = rx;
    _serial = NewSoftSerial(rx, tx);
    _serial.begin(9600);
}

//static
void SerialServoControl::send(int servo_id, int angle){
    unsigned char buff[6];

    int temp     = angle & 0x1f80;
    char pos_hi  = temp >> 7;
    char pos_low = angle & 0x7f;

    buff[0] = 0x80;        // start byte
    buff[1] = 0x01;        // device id
    buff[2] = 0x04;        // command number
    buff[3] = servo_id;       // servo number
    buff[4] = pos_hi;      // data1
    buff[5] = pos_low;     // data2

    for(int i=0; i<6; i++){
        _serial.print(buff[i], BYTE);

    }
}


void SerialServoControl::setup(int servo_id){
    _servo_id = servo_id;
}

void SerialServoControl::set(int angle){
    SerialServoControl::send(_servo_id, angle);
}

#endif

链接器命令(为清楚起见,我删除了 IDE 生成的显式临时目录路径,并将其分成多行。实际命令对于所有这些文件的位置是明确的):

  avr-gcc -Os -Wl,--gc-sections -mmcu=atmega328p \
  -o Wheel_Chair_Joystick_Control.cpp.elf \
  SerialServoControl.cpp.o \
  Wheel_Chair_Joystick_Control.cpp.o \
  WheelChairMotor.cpp.o \
  NewSoftSerial.cpp.o \
  core.a \
  -Lbuild277668752723095706.tmp \
  -lm

所有这些文件(SerialServoControl、Wheel_Chair_Joystick、NewSoftSerial、WheelChairMotor)都存在于 Arduino sketch 中目录。 Core.a是编译后的AVR库。

最佳答案

你必须在某个地方的源文件中定义你的类静态。将它们放在类中只是声明它们在那里,但仍然需要一些东西来定义它们。

在您的 .cpp 文件中,您可以这样做:

NewSoftSerial SerialServoControl::_serial(9, 8);
char SerialServoControl::_tx = 0;
char SerialServoControl::_rx = 0;

设置合适的初始值;我只是假设评论是针对构造函数的。

关于c++ - 解决链接器错误 : undefined reference to static class members,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5603101/

相关文章:

c++ - 引用指针不适用于 C++ 中的头文件

C++ 等于运算符

c++ - Qt vtable错误

Arduino Nano - "avrdude: ser_open():system can' t 打开设备 "\\.\COM1": the system cannot find the file specified"

Arduino按钮计数器

c++ - 数字常量 Arduino 之前的预期不合格 ID

java - 为什么我可以访问封闭类引用的私有(private)成员

c++ - 在C++中查找所有目录中的所有文件

c# - 基于 session 的 ASP.Net 中的静态属性将在所有用户之间共享?

c++ - 传递非静态成员而无需外部设置