在类中使用未声明的标识符
Posted
技术标签:
【中文标题】在类中使用未声明的标识符【英文标题】:Use of undeclared identifier in a class 【发布时间】:2013-09-06 15:41:40 【问题描述】:我正在构建一个类,该类的构造函数采用一个表示日期的字符串。构造函数应将月、日和年分配给类的适当数据成员。
到目前为止,我已经写了一些非常基本的东西,只假设了几种日期格式。
我的问题是我想使用用于构造函数参数的字符串。我想在类的主体中使用该字符串,但是当我使用它时,无论它在哪里使用,都会出现未声明的标识符错误。
我怎样才能防止这种情况发生?
类代码:
#ifndef CHRONO_H
#define CHRONO_H
#include <iostream>
#include <string>
class chrono
public:
inline chrono(std::string s);
unsigned year;
unsigned month;
unsigned day;
std::string numyear"0123456789";
std::string alph"abcdefghijklmnopqrstuvwxyz";
std::string punc",/";
std::string::size_type indyear = s.find_first_of(punc);
std::string::size_type indmonth = s.find_first_of(alph);
std::string::size_type indmonthend = s.find_last_of(alph);
std::string::size_type lengthmonth = indmonthend - indmonth;
std::string::size_type inddate = s.find_first_of(numyear);
std::string::iterator begin = s.begin();
std::string::iterator end = s.end();
;
#endif
构造函数代码:
#include <iostream>
#include <string>
#include "chrono.h"
inline chrono(std::string s) : year(s.substr(indyear,4)), month(tolower(s).substr(indmonth,lengthmonth)), day(s.substr(inddate,1))
编辑::
我使用将所有初始化放在构造函数中的建议编辑了我的代码。我认为这与提出的其他方法基本相同。
类代码:
#ifndef CHRONO_H
#define CHRONO_H
#include <iostream>
#include <string>
class chrono;
class chrono
public:
inline chrono(std::string s);
std::string numyear"0123456789";
std::string alph"abcdefghijklmnopqrstuvwxyz";
std::string punc",/";
std::string::size_type indyear, indmonth, indmonthend, lengthmonth, inddate;
std::string::iterator begin, end;
unsigned year;
unsigned month;
unsigned day;
;
#endif
构造函数代码:
#include <iostream>
#include <string>
#include "chrono.h"
inline chrono::chrono(std::string s) : indyear(s.find_first_of(punc)), indmonth(s.find_first_of(alph)), indmonthend(s.find_last_of(alph)), lengthmonth(indmonthend - indmonth), inddate(s.find_first_of(numyear)), begin(s.begin()), end(s.end()), year(stoi(s.substr(indyear,4))), month(stoi(s.substr(indmonth,lengthmonth))), day(stoi(s.substr(inddate,1)))
主要:
#include <iostream>
#include <string>
#include "chrono.h"
int main()
std::string st;
std::cout << "Enter a date" << std::endl;
std::cin >> st;
chrono today(st);
std::cout << "Month " << today.month << std::endl;
std::cout << "Day " << today.day << std::endl;
std::cout << "Year " << today.year << std::endl;
return 0;
我收到以下错误:
Undefined symbols for architecture x86_64:
"chrono::chrono(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >)", referenced from:
_main in ex9_51-JhoQAx.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
【问题讨论】:
是什么让你觉得年月日需要在构造函数中初始化,而其他成员却可能按照你的方式初始化?为什么不在构造函数中初始化其他所有内容? 【参考方案1】:变量s
是您的构造函数的参数,并且仅在该构造函数中具有作用域和生命周期。
然后您尝试在构造函数之外访问它,如下所示:
std::string::size_type indyear = s.find_first_of(punc);
如果你想保留s
,你需要将它存储在一个成员变量中:
class chrono
public:
inline chrono(std::string s);
unsigned year;
unsigned month;
unsigned day;
std::string member_s; // Here's the member-variable.
;
inline chrono(std::string s) :
year(s.substr(indyear,4)),
month(tolower(s).substr(indmonth,lengthmonth)),
day(s.substr(inddate,1)),
member_s(s) // Here we store the local-variable s in the member-variable
最后,你需要引用member_s
而不是参数s
std::string::size_type indyear = member_s.find_first_of(punc);
注意我认为这不会解决您的所有问题,因为我认为member_s
在indyear
初始化程序中使用时可能仍未初始化。所以这可能不会让你一路走好,但它是一个好的开始。
【讨论】:
【参考方案2】:你需要类标识符:
inline chrono::chrono(std::string s) : year(s.substr(indyear,4)), month(tolower(s).substr(indmonth,lengthmonth)), day(s.substr(inddate,1))
【讨论】:
谢谢忘记了。【参考方案3】:“我想使用用于构造函数参数的字符串。我想在类的主体中使用该字符串”
在您的构造函数中,s
是具有自动存储持续时间的临时副本,仅存在于此构造函数的范围内。要解决此问题,您可以定义此类的新成员并使用已传递给构造函数的参数对其进行初始化。还可以考虑将#define
(或public static const
成员)用于在运行时永远不会更改的字符串:
#define CHRONO_ALPH "abcdefghijklmnopqrstuvwxyz"
#define CHRONO_DIGITS "0123456789"
#define CHRONO_PUNC ",/"
class chrono
public:
chrono(std::string s_) :
s(s_),
indyear(s.find_first_of(CHRONO_PUNC)),
indmonth(s.find_first_of(CHRONO_ALPH)),
inddate(s.find_first_of(CHRONO_DIGITS)),
indmonthend(s.find_last_of(CHRONO_ALPH)),
lengthmonth(indmonthend - indmonth),
year(s.substr(indyear,4)),
month(tolower(s).substr(indmonth,lengthmonth)),
day(s.substr(inddate,1))
std::string s, year, month, day;
size_t indyear, indmonth, inddate, indmonthend, lengthmonth;
还请注意,您已经定义了整数成员 year
、month
和 day
,但您将它们初始化为 std::string
对象。
【讨论】:
这不会使对构造函数的调用不明确,因为我已经有一个只接受字符串的构造函数。 @Comrade:我的意思是扩展现有的构造函数。现在检查我的答案。 @Comrade:我添加了可能适合您需求的其他信息;) 谢谢我看看。 是的,它实际上来自一个练习,并指定了成员应该是什么类型。如果没有这样的限制,我会做很多不同的事情。以上是关于在类中使用未声明的标识符的主要内容,如果未能解决你的问题,请参考以下文章
当我想在目标 c 项目中使用 swift 文件时使用未声明的标识符