- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据这个问题 - template argument deduction with strongly-typed enumerations - 让强类型枚举器参与重载解析似乎具有挑战性 - 如果不是不可能的话。
如果我们有以下条件
#include <string>
#include <iostream>
void ExternalFunction(const std::string& tag, int value)
{
std::cout << tag << " - (int) " << value << std::endl;
}
void ExternalFunction(const std::string& tag, double value)
{
std::cout << tag << " - (double) " << value << std::endl;
}
void ExternalFunction(const std::string& tag, const std::string& value)
{
std::cout << tag << " - (string) " << value << std::endl;
}
class Wrapper
{
public:
virtual void DoSomething() = 0;
};
template <typename variable_type>
class VariableWrapper : public Wrapper
{
public:
VariableWrapper(variable_type variable) : variable(variable) {}
void DoSomething() override
{
ExternalFunction("tag", variable);
}
variable_type& variable;
};
template <typename enumerator, typename convert_to_string>
class EnumWrapper : public VariableWrapper<enumerator>
{
public:
EnumWrapper(enumerator& variable, convert_to_string encoder) : VariableWrapper<enumerator>(variable), encoder(encoder) {}
void DoSomething() override
{
ExternalFunction("tag", encoder(VariableWrapper<enumerator>::variable));
}
convert_to_string encoder;
};
enum class StronglyTyped
{
A,
B,
C
};
int main()
{
StronglyTyped e = StronglyTyped::A;
Wrapper* wrapper = new EnumWrapper(e, [](StronglyTyped S)->std::string{return "Test";});
wrapper->DoSomething();
}
如果我们尝试运行这个 - http://coliru.stacked-crooked.com/a/d555c4e3300ab05d - 我们得到了错误
main.cpp: In instantiation of 'void VariableWrapper<variable_type>::DoSomething() [with variable_type = StronglyTyped]':
main.cpp:31:14: required from here
main.cpp:33:29: error: no matching function for call to 'ExternalFunction(const char [4], StronglyTyped&)'
33 | ExternalFunction("tag", variable);
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
main.cpp:4:6: note: candidate: 'void ExternalFunction(const string&, int)'
4 | void ExternalFunction(const std::string& tag, int value)
| ^~~~~~~~~~~~~~~~
main.cpp:4:51: note: no known conversion for argument 2 from 'StronglyTyped' to 'int'
4 | void ExternalFunction(const std::string& tag, int value)
| ~~~~^~~~~
main.cpp:9:6: note: candidate: 'void ExternalFunction(const string&, double)'
9 | void ExternalFunction(const std::string& tag, double value)
| ^~~~~~~~~~~~~~~~
main.cpp:9:54: note: no known conversion for argument 2 from 'StronglyTyped' to 'double'
9 | void ExternalFunction(const std::string& tag, double value)
| ~~~~~~~^~~~~
main.cpp:14:6: note: candidate: 'void ExternalFunction(const string&, const string&)'
14 | void ExternalFunction(const std::string& tag, const std::string& value)
| ^~~~~~~~~~~~~~~~
main.cpp:14:66: note: no known conversion for argument 2 from 'StronglyTyped' to 'const string&' {aka 'const std::__cxx11::basic_string<char>&'}
14 | void ExternalFunction(const std::string& tag, const std::string& value)
| ~~~~~~~~~~~~~~~~~~~^~~~~
是否可以让强类型枚举器参与重载决策?我不想删除强类型 - 这确实解决了这个问题 - 因为我将不得不在多个枚举之间使用唯一的名称
编辑:我已经从问题中删除了 std::to_string 并相应地更新了代码,因为它被错误地关注了。
最佳答案
你的代码写错了。
好的,所以 EnumWrapper<>::DoSomething
覆盖 VariableWrapper<T>::DoSomething
.所以直接调用DoSomething
就不会调用了在任何 EnumWrapper
对象。
但这并不意味着 VariableWrapper<T>::DoSomething
不存在。它确实存在,您仍然可以通过合格的调用来调用它。因此,当您实例化 VariableWrapper<T>
对于某些特定的 T
,该模板类的成员函数必须有效。
和VariableWrapper<T>::DoSomething
对任何 T
均无效不能用于调用 ExternalFunction
直接地。这与具体的枚举无关;这纯粹是关于您如何编写函数。
你应该改成 EnumWrapper
不继承 VariableWrapper
.它们都可以继承自 BaseWrapper
,但他们没有相互继承的业务。或者你可以制作 ExternalFunction
它本身是一个模板,可以解决如何为任何给定类型做任何事情。
关于c++ - 强制强类型枚举参与模板重载决策,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64327008/
是否有显示测试用例数量以提供决策/条件覆盖率的工具? 例如: if(x>0) if(x0) 3 个案例足以覆盖决策/条件。 if(x>0) if(x0) 4 个案例足以覆盖决策/条件。 这是真的吗?
我正在尝试找到一种优雅的方式来实现易于维护的决策算法,因为决策的条件可能经常变化。 我将尝试更具体地举一个例子: 假设我正在尝试管理一家餐厅厨房的 cooking 厨师团队。 每个厨师都知道如何 co
我需要一个 Android Activity ,它应该显示一个字段,如带有图像的标题和其下方的几个动态生成的项目(我认为是 1 到 100)。如果我不想让 headsection 滚动,我会使用 Li
我正在编写函数以从值列表中提供最大值(value)。我的问题是如果所有值都相同怎么办?例如, 30,29,34,45 简单。最大值为 45。现在, 20,20,20,20 这里的最大值是20吗?或者没
我需要知道哪个检索事件日志的速度更快,但我在比较中找不到:假设需要查找的所有列都有btree索引,需要查找的json对象中的所有键都有GIN索引。 case 1: ActivityID (in
我需要在我的 iPhone 应用程序中显示一个表格: neither the number of cells nor the contents are known at compile time, b
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
这是针对在 MinGW/Windows 上使用 SDL 的小型游戏项目。 我正在研究一个物理引擎,我的想法是拥有一个Physics::Object,所有物理对象都应该派生自它,并且它会在全局 Phys
我有一个小的 LINQ 查询来填充下拉控件(WinForms Telerik 应用程序),其中的数据行显示两个值(ITNBR 和描述): var query = from i in db.ItemMa
我正在尝试使用 antlr 3 为我的语法生成词法分析器和解析器。有人可以解释这个错误是什么意思吗? error(211): T.g:14:6: [fatal] rule stmt has non-L
partykit包很好地表示了决策树。我遇到的唯一问题是标签很长然后它们重叠。是否可以移动这些标签以防止它(见下图中的蓝色箭头)? library("rpart") library("partykit
所以我环顾四周,似乎找不到合适的解决方案来解决我的问题。 问题 在我的布局中,我希望能够根据数据库中的内容选择在运行时是否存在导航项: 当前布局(导航栏) @Html.Acti
我目前正在创建一个机器学习 jupyter 笔记本作为一个小项目,并希望显示我的决策树。但是,我能找到的所有选项都是导出图形然后加载图片,这相当复杂。 所以想问问有没有办法不用导出加载图形,直接显示我
grammar AdifyMapReducePredicate; PREDICATE : PREDICATE_BRANCH | EXPRESSION ; PREDICA
我是一名优秀的程序员,十分优秀!