无法实例化课程

时间:2019-02-18 17:41:43

标签: oop arduino esp32 arduino-c++

我是C ++的初学者。所以请忍受我

我尝试为温度传感器编写代码,该代码应将值发布到API。

我无法实例化我的课程ApiClient。 我总是会遇到这些错误:

  • IDE:在没有适当的operator()或将转换函数转换为指针到函数类型的情况下,调用类类型的对象
  • IDE:没有重载函数“ ApiClient :: ApiClient”的实例与指定的类型匹配
  • COMPILER:与对'(ApiClient)(String&)'的调用不匹配

我的代码如下所示(略显苗条,以方便阅读):

main.cpp

#include <ApiClient.h>
ApiClient api;

void setup()
{
  Serial.begin(115200);
  String apiUrl = "https://myapi.com/api";
  api(apiUrl); // ERROR: raises call of an object of a class type without appropriate operator() or conversion functions to pointer-to-function type

}

void loop()
{

  String temp = "49";
  api.sendValue("temperature", temp);
}

ApiClient.h

#ifndef WebClient_h
#define WebClient_h

#include <Arduino.h>
#include <WiFi.h>
#include <esp_wps.h>
#include <HTTPClient.h>

class ApiClient
{
public:
  ApiClient(); // this is only added for testing
  ApiClient(String apiUrl); // it should always instanciate with url
  void sendValue(String key, String value);
  String _apiUrl;
private:
};

#endif

ApiClient.cpp

#include <ApiClient.h>

String _apiUrl;

HTTPClient http;

ApiClient::ApiClient(String apiUrl) // IDE says: "no instance of overloaded function "ApiClient::ApiClient" matches the specified type"
{
  this->_apiUrl = apiUrl;
  // some stuff to establish a connection
}

1 个答案:

答案 0 :(得分:0)

您正在尝试在已构造的对象上调用构造函数。

此行失败:

api(apiUrl);

您尝试的调用失败,因为编译器正在寻找以下功能之一:

return_type APIClient::operator()(const String&);
return_type APIClient::operator()(String); 
return_type APIClient::operator()(String&);

如果要调用构造函数,则您的声明应为声明。

ApiClient api(apiUrl);
// or better in c++11:
APIClient api{ apiUrl };

或者,您可以在ApiClient中创建一个初始化程序,该初始化程序将单个String作为参数,如下所示:

class ApiClient
{
public:
    ApiClient() { ...}
    ApiClient(const String& s) { Initialize(s); }
    Initialize(const String& s) { do the work }

    ...
};

在类中同时提供一步骤和两步骤的初始化API时请务必小心。使用新的字符串重新初始化时,您将需要适当的重置功能以避免混淆。