gpt4 book ai didi

没有构造函数的类中的 C++ 非静态常量成员

转载 作者:太空狗 更新时间:2023-10-29 23:39:36 26 4
gpt4 key购买 nike

我一直收到这个错误:

warning: non-static const member ‘const char sict::Weather::_date [7]’ in class without a constructor [-Wuninitialized]

我不明白。

main.cpp

#include <iostream>
#include <iomanip>
#include "Weather.h"
using namespace std;
namespace sict{

int main(){
int n;
Weather* weather;

cout << "Weather Data\n";
cout << "=====================" << endl;
cout << "Days of Weather: ";
cin >> n;
cin.ignore();
weather = new Weather(n);

for (int i = 0; i < n; i++){
char date_description[7];
double high = 0.0, low = 0.0;

cout << "Enter date: ";
cin >> date_description;
cout << "Enter high: ";
cin >> high;
cout << "Enter low : ";
cin >> low;
}
cout << endl;
cout << "Weather report:\n";
cout << "======================" << endl;

for (int i = 0; i < n; i++){
weather[i].display();
}

delete[] weather;

return 0;
}
}

天气.cpp

#include <iostream>
#include <cstring>
#include <iomanip>
#include "Weather.h"

using namespace std;
namespace sict{

void weather::set(const char* date[6], double _high, double _low){
strncpy(_date, date_description, 6);
_high = high;
_low = low;
}

void weather::display() const{
cout << setw(6) << setfill('_') << left << setw(6) << _date << right << setw(6) << _high << _low << '_' << endl;
}
}

天气.h

#ifndef SICT_WEATHER_H_
#define SICT_WEATHER_H_

namespace sict{
class Weather{
const char _date[7];
double _high;
double _low;

public:
void set(const char* _date[7], double _high, double _low);
void display() const;

};
}
#endif

我的编译错误如下

Weather.h:10:21: warning: non-static const member ‘const char sict::Weather::_date [7]’ in class without a constructor [-Wuninitialized]
Weather.cpp:11:7: error: ‘weather’ has not been declared
Weather.cpp: In function ‘void sict::set(const char**, double, double)’:
Weather.cpp:12:11: error: ‘_date’ was not declared in this scope
Weather.cpp:12:18: error: ‘date_description’ was not declared in this scope
Weather.cpp:13:11: error: ‘high’ was not declared in this scope
Weather.cpp:14:10: error: ‘low’ was not declared in this scope
Weather.cpp: At global scope:
Weather.cpp:18:7: error: ‘weather’ has not been declared
Weather.cpp:18:26: error: non-member function ‘void sict::display()’ cannot have cv-qualifier
Weather.cpp: In function ‘void sict::display()’:
Weather.cpp:19:57: error: ‘_date’ was not declared in this scope
Weather.cpp:19:86: error: ‘_high’ was not declared in this scope
Weather.cpp:19:95: error: ‘_low’ was not declared in this scope
Weather.h:10:21: warning: non-static const member ‘const char sict::Weather::_date [7]’ in class without a constructor [-Wuninitialized]
In file included from w3_in_lab.cpp:15:0:
Weather.h:10:21: warning: non-static const member ‘const char sict::Weather::_date [7]’ in class without a constructor [-Wuninitialized]
w3_in_lab.cpp: In function ‘int sict::main()’:
w3_in_lab.cpp:29:27: error: no matching function for call to ‘sict::Weather::Weather(int&)’
w3_in_lab.cpp:29:27: note: candidates are:
Weather.h:8:8: note: sict::Weather::Weather()
Weather.h:8:8: note: candidate expects 0 arguments, 1 provided
Weather.h:8:8: note: sict::Weather::Weather(const sict::Weather&)
Weather.h:8:8: note: no known conversion for argument 1 from ‘int’ to ‘const sict::Weather&’

最佳答案

编译器告诉您您的类中有一个const 成员。作为 const,它的值只能在类构造函数中设置(并且永远不会更改)。

但该类没有构造函数,因此该值从未设置。

关于没有构造函数的类中的 C++ 非静态常量成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32904211/

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