gpt4 book ai didi

C++:将派生类传递给抽象类的正确方法

转载 作者:行者123 更新时间:2023-11-30 05:28:37 25 4
gpt4 key购买 nike

我正在尝试创建一个库来与 Arduino 一起使用来执行一些网络操作,而不管 Arduino 使用的是 EthernetClient 还是 WiFiClient。自从我接触 C++ 中的任何东西以来已经很多很多年了,我想我搞砸了整个“指针”与“引用”与“值”的东西。

我似乎无法正确判断何时使用 & 或 *,或任何使它起作用的东西,以便我可以拥有一个通用的客户端数据类,该数据类被设置为 WiFiClient 或 EthernetClient 值。

有人可以帮助解释我做错了什么,为什么它不起作用,以及正确的方法是什么才能起作用吗?

这是我的页眉中的内容:

#ifndef web_h
#define web_h

#include "Arduino.h"
#include "Client.h"
#include "WiFiClient.h"
#include "EthernetClient.h"

class web {
public:
web(WiFiClient* client);
web(EthernetClient* client);
void makeCall();
private:
Client& _client;
String getRequest(String server, int port, String url);
};
#endif

这是我的库 cpp 中的内容:

#include "Arduino.h"
#include "web.h"
#include "Client.h"
#include "WiFiClient.h"
#include "EthernetClient.h"

web::web(WiFiClient* client){
_client = client;
}
web::web(EthernetClient* client){
_client = client;
}
void web::makeCall(){
String response = getRequest("www.google.com", 80, "/");
Serial.println(response);
}

String web::getRequest(String server, int port, String url){
String response = "";
char cServer[server.length() + 1];
server.toCharArray(cServer, server.length() + 1);

if(_client.connect(cServer, port)){
_client.println("GET " + url + " HTTP/1.1");
_client.println("Host: " + server);
_client.println();

while (_client.available()) {
char c = _client.read();
response = response + c;
}
}
Serial.println("inside");
Serial.println(response);
return response;
}

这是我尝试使用该库的地方:

#include <SPI.h>
#include "ESP8266WiFi.h"
#include <web.h>

char ssid[] = "MYSID"; // your network SSID (name)
char pass[] = "WIRELESSPWD";
int status = WL_IDLE_STATUS;
WiFiClient* client;
web webClient(*client);

void setup() {
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}

while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
status = WiFi.begin(ssid, pass);
delay(10000);
}

Serial.print("SSID: ");
Serial.println(WiFi.SSID());

webClient.makeCall();
}

void loop() {

}

我得到的错误包括以下内容,具体取决于我随机放置 &、* 等的位置,因为我并不真正理解我在做什么。它永远不会编译:

wifi_test:10: error: no matching function for call to 'web::web(WiFiClient&)'


error: uninitialized reference member 'web::_client' [-fpermissive]

web::web(WiFiClient& client){

最佳答案

class web {
private:
Client& _client;
};

_client 是对 Client 对象的引用。与指针不同,您不能更改引用“指向”的位置。所以你必须用一个值来初始化它。

  web::web(WiFiClient* client){
_client = client;
}

在您的构造函数中,您没有初始化_client 变量,但您尝试为其分配一个值。这就是你得到错误的原因

error: uninitialized reference member 'web::_client'

要初始化引用,您必须在构造函数中使用初始化列表。这是一个简化版本,它也只使用一个构造函数,因为您不必同时拥有两个重载。

class web {
public:
web(Client& client);
void makeCall();
private:
Client& _client;
String getRequest(String server, int port, String url);
};

web::web(Client& client)
: _client(client)
{
}

然后你可以创建一个web对象:

WiFiClient client;
web webClient(client);

如果您想有效地使用它们,我建议您阅读有关引用和指针的内容。否则,您将不断遇到问题。

关于C++:将派生类传递给抽象类的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36743680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com