- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我得到一段代码的编译错误(抱歉,未实现:重整过载),据我所知,这是正确的。我试图将代码最小化为一个可管理的示例,但它仍然很长(对此感到抱歉)。我知道那里的 C++11 东西正在开发中,所以这可能是我的编译器 (GCC 4.6.2) 的问题,但也可能是我遗漏了一些东西。
mod 函数只是更复杂函数(具有不同返回类型)的占位符。实际代码的目的是为一组数据结构提供索引,以允许使用不同的匹配条件进行快速查找。
干杯
马库斯
#include <map>
#include <string>
#include <iostream>
#include <list>
#include <functional>
#include <cassert>
//
// Functions
//
struct mod2 : public std::unary_function<int, int> {
int operator()(int x) const { return x % 2; }
};
struct mod3 : public std::unary_function<int, int> {
int operator()(int x) const { return x % 3; }
};
struct mod4 : public std::unary_function<int, int> {
int operator()(int x) const { return x % 4; }
};
//
// Base class foo
//
struct foo {
std::vector<int> data_m;
foo() : data_m() {}
int& insert(int x) {
data_m.push_back(x);
return data_m.back();
}
template<typename trans_T>
std::list<std::pair<typename trans_T::result_type, int> >
match(const typename trans_T::result_type& pattern,
const trans_T& trans = trans_T()) const {
std::list<std::pair<typename trans_T::result_type, int> > results;
for (auto it = data_m.begin(); it != data_m.end(); ++it) {
auto p = trans(*it);
if (pattern == p) {
results.push_back(std::make_pair(p, *it));
}
}
return results;
}
};
//
// Derived class bar
//
template<typename base_T, typename trans_T>
struct bar : public base_T {
typedef base_T base_type;
typedef std::multimap<typename trans_T::result_type, int> index_type;
index_type index_m;
bar(const trans_T& trans = trans_T()) : base_type(), index_m() {}
int& insert(int x, const trans_T& trans = trans_T()) {
return index_m.insert(typename index_type::value_type(trans(x), base_type::insert(x)))->second;
}
std::pair<typename index_type::const_iterator,
typename index_type::const_iterator>
match(const typename trans_T::result_type& pattern,
const trans_T& trans = trans_T()) const {
return index_m.equal_range(pattern);
}
template<typename xtrans_T>
decltype(base_type().match(typename xtrans_T::result_type(), xtrans_T()))
match(const typename xtrans_T::result_type& pattern,
const xtrans_T& xtrans = xtrans_T()) const {
return base_type::match(pattern, xtrans);
}
};
//
// Begin/end functions present in Boost but not in GCC
//
template<typename iter_T>
iter_T begin(const std::pair<iter_T, iter_T>& range) {
return range.first;
}
template<typename iter_T>
iter_T end(const std::pair<iter_T, iter_T>& range) {
return range.second;
}
//
// Main
//
int main(const int argc, const char** argv) {
using std::cout;
using std::endl;
bar<bar<foo, mod2>, mod3> baz;
///
/// Insert some numbers
///
for (int i = 0; i < 20; ++i) {
baz.insert(i);
}
for (int i = 0; i < 5; ++i) {
cout << "i = " << i << endl;
///
/// Try to match with different functions
///
auto baz_match_mod2 = baz.match(i, mod2());
cout << "mod2:";
for (auto it = begin(baz_match_mod2); it != end(baz_match_mod2); ++it) {
assert(it->first == i);
cout << ' ' << it->second;
}
cout << endl;
auto baz_match_mod3 = baz.match(i, mod3());
cout << "mod3:";
for (auto it = begin(baz_match_mod3); it != end(baz_match_mod3); ++it) {
assert(it->first == i);
cout << ' ' << it->second;
}
cout << endl;
auto baz_match_mod4 = baz.match(i, mod4());
cout << "mod4:";
for (auto it = begin(baz_match_mod4); it != end(baz_match_mod4); ++it) {
assert(it->first == i);
cout << ' ' << it->second;
}
cout << endl;
}
return 0;
}
最佳答案
当问题出在编译器而不是你的代码时,GCC 的错误消息只使用短语“抱歉,未实现”——在这种情况下,你正在尝试使用尚未实现的 C++11 功能完全支持。
不幸的是,GCC 的网站不允许我对特定错误消息的代码进行 grep,因此我无法帮助您找出未实现的确切内容。我赞同 Basile 的建议,可以在 gcc-help@gcc.gnu.org 上提问。
关于c++ - GCC : sorry, 未实现:重整过载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8222924/
我在 magento 2 本地系统中遇到以下错误: We're sorry, an error has occurred while generating this email. 它没有向我显示目录中
我正在为Grails使用Spring Security插件。我可以对LDAP进行身份验证,也可以看到授权工作。授权失败时,我会看到“对不起,您无权查看此页面”。这个错误是从哪里来的? 我的Secure
我正在开发一个小型电视应用程序,它使用许多 m3u8 格式的电视流。如果我使用 native VideoView,所有流都可以正常工作。但我想使用 Vitamio 更好地支持不同的协议(protoco
我正在尝试为墨西哥和巴西集成 PayPal Plus,尽管我在执行时成功创建了一个批准 URL: var ppp = PAYPAL.apps.PPP({ 'approvalUrl': 'h
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我的网站上显示的谷歌地图出现问题,该 map 直到上周五都运行良好。我的一位客户说他无法再从我的网站查看谷歌地图,并向我发送了一张屏幕截图,其中充满了“抱歉,我们这里没有图像”文本。 奇怪的是,到目前
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 2 年前。 Improve
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
当我多次调用 GetMessages() 时,出现了 pq: sorry, too many clients already 错误。 请找到更新后的代码: main()代码 func main() {
我在尝试登录 Unity Hub 和 https://id.unity.com/ 时遇到问题,寻找解决方案我尝试允许 Unity 通过防火墙并将我的网络更改为私有(private)(它已经是私有(pr
正如在 API 文档中一样,我创建了一个 ~/Spotify/myapp/index.html(在 Mac 上),但是当从 Spotify(支持应用程序的预览版)的搜索栏中加载 spotify:app
如果我的应用程序崩溃了,我会拦截崩溃(使用SetUnhandledExceptionFilter函数)。在崩溃处理程序中,我创建一个小型转储文件,并通知用户他的应用程序已崩溃。该通知是通过带有标志MB
我正在尝试将 Ldap 登录添加到我的 grails 应用程序。添加 spring-securiy-core 和 spring-security-ldap (2.0.1) 插件后,我在 config.
我在使用 Typo3 时遇到问题。我可以通过 pagetree 添加新页面、文件夹等,但我无法添加,当我尝试这样做时出现错误: 抱歉,您没有执行此更改的适当权限。 日志中的第二个错误 SQL erro
我在我的 NodeJS 后端服务中使用 PostgreSQL。突然间,当我启动服务时,我遇到了以下错误 connection error error: sorry, too many clients
我得到一段代码的编译错误(抱歉,未实现:重整过载),据我所知,这是正确的。我试图将代码最小化为一个可管理的示例,但它仍然很长(对此感到抱歉)。我知道那里的 C++11 东西正在开发中,所以这可能是我的
我有连接大小的问题...我知道问题出在哪里...我的程序负载很重,我必须从数据库中获取很多查询(这里使用的是 postgres)... hibernate 连接池大小也没有帮助我......起初这是一
这个问题在这里已经有了答案: Can I split an already split hunk with git? (4 个答案) 关闭 3 年前。 我跑过: git add -p 然后我想通过输
解密时出现以下错误: $ eyaml decrypt -s 'ENC and the key goes on here' .gnupg --quiet --no-secmem-warning --no
我已经将一个应用程序部署到 heroku(来自 udemy.com 的“ROR 开发人员类(class)”下的财务跟踪器)。登录按钮工作正常,但是当我点击注册按钮时,它给了我这个错误 We're so
我是一名优秀的程序员,十分优秀!