- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为围绕 std::variant
的包装类编写模板化的 operator==
。这个想法是 Setting
类与其他 Setting
对象以及变体支持的类型是可比较的。我已经在没有模板的情况下解决了这个问题,因为它很容易写出 operators==
,但对我来说学习模板方式很重要。
所以,这就是我希望使用 Setting
的方式:
Setting s1("string");
Setting s2("string");
s1 == s2; // okay, equals true
还有
Setting s3("string");
s3 == "string"; // should equal true
std::string s4 = "string";
s3 == s4; // also True
这是我到目前为止所获得的,尽管我很确定我还有很长的路要走。策略是将 operator=
模板化,这样如果模板参数 T
是有效的变体 (setting_t
) 类型,则从变体作为 T
类型并执行比较(T
与 T
比较)。或者,当 T
是另一个 Setting
时,我们可以直接比较 setting_
成员变量(Setting
与 设置
)。
#include <type_traits>
#include <variant>
using setting_t = std::variant<std::string, int, double>;
/**
* Utility which is true when
* type T is in a variant, false otherwise.
* For instance,
* std::string x("a String");
* bool truth = isValidVariantType<decltype(x), setting_t>(); // true
*
* unsigned long x = 4;
* bool truth = isValidVariantType<decltype(x), setting_t>(); // false
*/
template<typename T, typename ALL_T>
struct isValidVariantType;
template<typename T, typename... ALL_T>
struct isValidVariantType<T, std::variant<ALL_T...>>
: public std::disjunction<std::is_same<T, ALL_T>...> {
};
class Setting {
public:
explicit Setting(setting_t setting)
: setting_(std::move(setting)) {}
template <typename T,
class = typename std::enable_if<isValidVariantType<T, setting_t>::value>::type>
bool operator==(const T& setting){
T val = std::get<T>(setting);
return val == setting;
}
private:
setting_t setting_;
};
我现在已经为此花费了很多时间,所以如果您能给我任何建议,我将不胜感激。提前谢谢!
根据要求,这是编译器当前生成的内容
当我运行 SettingTests.SettingVsSetting
TEST(SettingTests, SettingVsSetting){
Setting setting1("a String");
Setting setting2("a String");
// bool truth = setting1 == setting2;
}
生成以下编译器消息:
/home/ciaran/SettingTests/SRC/TemplateTutorialTests.cpp: In member function ‘virtual void SettingTests_SettingVsSetting_Test::TestBody()’:
/home/ciaran/SettingTests/SRC/TemplateTutorialTests.cpp:11:27: error: no match for ‘operator==’ (operand types are ‘Setting’ and ‘Setting’)
11 | bool truth = setting1 == setting2;
| ~~~~~~~~ ^~ ~~~~~~~~
| | |
| Setting Setting
In file included from /home/ciaran/SettingTests/SRC/TemplateTutorialTests.cpp:2:
/home/ciaran/SettingTests/SRC/TermplateTutorial.hpp:32:10: note: candidate: ‘template<class T, class> bool Setting::operator==(const T&)’
32 | bool operator==(const T& setting){
| ^~~~~~~~
/home/ciaran/SettingTests/SRC/TermplateTutorial.hpp:32:10: note: template argument deduction/substitution failed:
/home/ciaran/SettingTests/SRC/TermplateTutorial.hpp:31:13: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’
31 | class = typename std::enable_if<isValidVariantType<T, setting_t>::value>::type>
| ^~~~~
而 Setting.SettingVsString
TEST(SettingTests, SettingVsString){
Setting setting1("a String");
std::string setting2("a String");
bool truth = setting1 == setting2;
}
生成
/home/ciaran/SettingTests/SRC/TermplateTutorial.hpp: In instantiation of ‘bool Setting::operator==(const T&) [with T = std::__cxx11::basic_string<char>; <template-parameter-1-2> = void]’:
/home/ciaran/SettingTests/SRC/TemplateTutorialTests.cpp:17:30: required from here
/home/ciaran/SettingTests/SRC/TermplateTutorial.hpp:33:28: error: no matching function for call to ‘get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(const std::__cxx11::basic_string<char>&)’
33 | T val = std::get<T>(setting);
| ~~~~~~~~~~~^~~~~~~~~
In file included from /usr/include/c++/10/bits/unique_ptr.h:36,
from /usr/include/c++/10/memory:83,
from /home/ciaran/SettingTests/googletest/googletest/include/gtest/gtest.h:57,
from /home/ciaran/SettingTests/SRC/TemplateTutorialTests.cpp:1:
/usr/include/c++/10/utility:223:5: note: candidate: ‘template<long unsigned int _Int, class _Tp1, class _Tp2> constexpr typename std::tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type& std::get(std::pair<_Tp1, _Tp2>&)’
223 | get(std::pair<_Tp1, _Tp2>& __in) noexcept
| ^~~
/usr/include/c++/10/utility:223:5: note: template argument deduction/substitution failed:
/usr/include/c++/10/utility:228:5: note: candidate: ‘template<long unsigned int _Int, class _Tp1, class _Tp2> constexpr typename std::tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&& std::get(std::pair<_Tp1, _Tp2>&&)’
228 | get(std::pair<_Tp1, _Tp2>&& __in) noexcept
| ^~~
... (it goes on like this for a while)
operator==
template<typename T,
class = typename std::enable_if<isValidVariantType<T, setting_t>::value>::type>
bool operator==(const T &setting) {
if (auto val = std::get_if<T>(&setting_)){
return *val == setting;
};
return false;
}
最佳答案
你有一个错字;您正在调用std::get
在 setting
参数,而不是 this->setting_
.修复使您的代码编译的问题。
但你可以做得更好。
template<class D, class T>
class SettingEqual {
D const& self() const { return *static_cast<D const*>(this); }
D & self() { return *static_cast<D*>(this); }
decltype(auto) setting() { return self().setting_; }
decltype(auto) setting() const { return self().setting_; }
friend bool operator==( SettingEqual const& self, T const& t ) {
if (!std::holds_alternative<T>(self.setting())) return false;
return std::get<T>(self.setting()) == t;
}
friend bool operator==( T const& t, SettingEqual const& self ) {
return (self==t);
}
friend bool operator!=( T const& t, SettingEqual const& self ) {
return !(self==t);
}
friend bool operator!=( SettingEqual const& self, T const& t ) {
return !(self==t);
}
};
template<class...Ts>
class SettingT:
public SettingEqual<SettingT<Ts...>, Ts>...
{
template<class D, class T>
friend class SettingEqual;
public:
explicit SettingT(std::variant<Ts...> setting)
: setting_(std::move(setting)) {}
private:
std::variant<Ts...> setting_;
};
using Setting = SettingT<std::string, int, double>;
这引入了 ==
和 !=
参与重载决议的左右重载。
它还会检查类型是否匹配,并指出不匹配的类型不相等。
使用的技术是“CRTP”,我将实现推到一个静态强制向下转换的父类中,以及 Koenig 或 ADL 友元运算符,这让我可以注入(inject)非模板 operator==
进入 Setting == something
的查找参与重载决议。
现在这还不错,但它遇到了一个问题,它将事物转换为T
.所以SettingT<std::string> == "hello"
熄灭并创建一个 std::string
然后放 "hello"
在其中,然后比较 std::string
在 SettingT
进入它。
真的,我们只想发送 "hello"
直接到std::string==
,或者做一些更好的事情。
template<class T>
struct tag_t {using type=T;};
template<class T>
constexpr tag_t<T> tag{};
template<class T>
struct overload_detect {
auto operator()(T const&){return tag<T>;};
};
template<class...Ts>
struct overload_detector:overload_detect<Ts>... {
using overload_detect<Ts>::operator()...;
};
template<class T0, class...Ts>
using best_conversion = typename decltype(overload_detector<Ts...>{}( std::declval<T0 const&>() ))::type;
template<class T, class...Ts>
concept any_conversion = requires (T a) {
{ (std::void_t<best_conversion<T, Ts...>>)(0) };
};
template<class...Ts>
class SettingT
{
public:
explicit SettingT(std::variant<Ts...> setting)
: setting_(std::move(setting)) {}
template<any_conversion<Ts...> U>
friend bool operator==(SettingT const& self, U const& u) {
using T = best_conversion<U, Ts...>;
if (!std::holds_alternative<T>(self.setting_)) return false;
return std::get<T>(self.setting_) == u;
}
template<any_conversion<Ts...> U>
friend bool operator==(U const& u,SettingT const& self) {
return self==u;
}
template<any_conversion<Ts...> U>
friend bool operator!=(U const& u,SettingT const& self) {
return !(self==u);
}
template<any_conversion<Ts...> U>
friend bool operator!=(SettingT const& self, U const& u) {
return !(self==u);
}
private:
std::variant<Ts...> setting_;
};
现在 best_conversion<X, Ys...>
在 Ys
中找到最佳转换对于 X
并返回该类型,然后我们发送到 ==
无需先进行转换。
==
可以自由地进行转换,或者如果它愿意,它可以做一些更有效的事情。
关于c++ - 如何在 `operator==` 包装类中使用重载 `std::variant` 来比较 Setting Vs Setting 和 T vs T?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67374983/
我是 Mercurial 的新手,并且不知何故仍处于评估过程中,所以这四个概念对我来说有点困惑。有些被提到等同于 Git 的 Staging/Index 概念,有些甚至比 Git 的 Staging
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 6 个月前关闭。 Improve this ques
任何人都可以给我详细信息吗? 例如? #ID 是属性、特性、选择器还是 anchor ? 默认属性和默认属性是不同的东西吗? 这些都是标签还是元素? 我们将对此说些什么 这个 ..... 还有这些
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我有一个由 Javascript 填充的下拉列表。 在决定加载时显示的默认值时,我意识到以下属性显示的值完全相同: innerText innerHTML label text textContent
我可以知道每个 Exec 之间有什么区别吗? , ExecWait , ExecShell , nsExec::Exec , nsExec::ExecToLog, nsExec::ExecToStac
当您处于版本 1 和版本 2 之间时,您会如何维护您的软件? 从我的角度来看,“补丁”、“修补程序”、“维护版本”、“服务包”等术语都很模糊,根据与您交谈的对象不同,定义也不同。 您如何称呼版本之间的
我刚刚发现在 ES6 中有一个新的数学方法:Math.trunc . 我在 MDN article 中阅读了它的描述。 , 听起来像使用 |0 . 此外,>0 , &-1 , ^0也做类似的事情(感谢
我想知道我的 StackPanel 所有项目的高度。 有什么区别: Height - 获取或设置元素的建议高度。 ActualHeight - 获取该元素的渲染高度。 (只读) ExtentHeigh
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我对所有声称以某种方式阻止计算的内置 Mathematica 函数感到困惑:Unevaluated、Defer、Hold ,以及超过 6 个 Hold* 形式。 Mathematica 文档只是单独解
我什至不确定正确的术语,所以让我从我的目标开始:拥有一个简单的应用程序(“Data Doler”),它只会将大量数据从文件读取到内存中,然后提供服务将该数据切片到名为“Data Lapper”的单个多
我刚刚开始在我的项目中使用 Elasticsearch,我想像 sql 关键字一样搜索 '喜欢%' 做。 谁能解释一下 之间的区别通配符 , 前缀 , 查询字符串和 正则表达式 ? 哪个可以搜索最好性
由于我对任何主流浏览器(Firefox、Chrome、Opera)都不太满意,而且我尝试过的不太受欢迎的浏览器(近十几种)都没有,所以我决定 DIY 并制作一个网页我想要最好的浏览器。 主要目标是让它
我知道如何使用 Python 解析页面。我的问题是哪种方法是所有解析技术中最快的,其他方法的速度有多快? 我知道的解析技术有Xpath、DOM、BeautifulSoup,还有使用Python的fin
我试图从正在解析的命令行中找出哪个函数最适合将十进制、十六进制或八进制数转换为 int 最好——在不知道输入的情况下事先。 目标是使用一个函数来识别不同类型的输入并将其分配给它的整数 (int) 值,
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我们需要在我们的网站上显示酒吧、餐馆和剧院等各种场所的元信息(例如,地址、姓名)。 理想情况下,用户会输入地点名称以及邮政编码,我们会提供最接近的匹配项。 人们将哪些 API 用于类似的地理定位目的?
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我正在创建我的第一个 Web 应用程序,我真的很困惑应该使用什么技术。 我的应用程序需要看起来很严肃(像一个应用程序),它不需要很多色彩缤纷的图形界面。它只需要一个工具栏、一个标签栏、一个拆分面板(最
我是一名优秀的程序员,十分优秀!