- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我为我的 String
类声明并实现了一些迭代方法:begin()
、end()
等...但是当我尝试在测试程序中使用它们,但我得到了所有它们的 undefined reference 。
String.h
:
public:
typedef char* iterator;
typedef const char* const_iterator;
typedef std::reverse_iterator<iterator> reverse_iterator;
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
iterator begin();
iterator begin() const;
iterator end();
iterator end() const;
const_iterator cbegin();
const_iterator cend();
reverse_iterator rbegin();
reverse_iterator rbegin() const;
reverse_iterator rend();
reverse_iterator rend() const;
const_reverse_iterator crbegin();
const_reverse_iterator crend();
private:
char* string_;
String.cpp
:
inline String::iterator String::begin() {
return string_;
}
inline String::iterator String::begin() const {
return string_;
}
inline String::iterator String::end() {
return string_ + length_ - 1;
}
inline String::iterator String::end() const {
return string_ + length_ - 1;
}
inline String::const_iterator String::cbegin() {
return string_;
}
inline String::const_iterator String::cend() {
return string_ + length_ - 1;
}
inline String::reverse_iterator String::rbegin() {
return reverse_iterator(end());
}
inline String::reverse_iterator String::rbegin() const {
return reverse_iterator(end());
}
inline String::reverse_iterator String::rend() {
return reverse_iterator(begin());
}
inline String::reverse_iterator String::rend() const {
return reverse_iterator(begin());
}
inline String::const_reverse_iterator String::crbegin() {
return reverse_iterator(end());
}
inline String::const_reverse_iterator String::crend() {
return reverse_iterator(begin());
}
怎么了?
最佳答案
undefined reference ?但它编译得很好。我添加了一个构造函数:
String(const char *cc) {
string_ = new char[length_ = strlen(cc) + 1];
strcpy(string_, cc);
}
当然,添加了一个数据成员作为
int _length;
我的测试程序如下:
字符串 aa("abc");String::iterator itr = aa.begin();cout << itr << endl;
打印“abc”没问题!
关于c++ - 使用我自己的迭代方法的 undefined reference ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22962159/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!