- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,抱歉我的英语不好。
为了练习 c++11,我正在尝试编写类 std::experimental::any ( http://en.cppreference.com/w/cpp/experimental/any) 的一个版本,添加一些额外的东西。
添加运算符<() 我在 g++ (4.9.2) 和 clang++ (3.5.0) 之间得到了不同的行为。
以下是该类(和使用的类)的简化版本,涵盖了最低限度的必要内容,以及触发问题的非常小的 main()。
抱歉,代码太长了,但我没能缩短示例。
#include <memory>
#include <iostream>
#include <type_traits>
#include <unordered_set>
namespace yans // yet another name space
{
class anyB // base for any
{
public:
virtual std::type_info const & typeT () const = 0;
virtual bool isLess (anyB const *) const = 0;
};
template <typename T>
class anyD : public anyB // derived for any
{
private:
T val;
static std::type_info const & typeInfo ()
{ static auto const & ret = typeid(T); return ret; }
template <typename U> // preferred version
static auto lessF (U const & u1, U const & u2, int)
-> decltype( std::declval<U const &>()
< std::declval<U const &>())
{ return (u1 < u2); }
template <typename U> // emergency version
static auto lessF (U const &, U const &, ...) -> bool
{ throw std::runtime_error("no operator < for type "); }
public:
anyD (T const & v0)
: val(v0)
{ }
std::type_info const & typeT () const override final
{ return typeInfo(); }
bool isLess (anyB const * pB0) const override final
{
auto pD0 = dynamic_cast<anyD<T> const *>(pB0);
if ( nullptr == pD0 )
throw std::bad_cast();
return lessF(val, pD0->val, 0);
}
};
class any
{
private:
template <class T>
using sT = typename std::decay<T>::type;
template <class T>
using noAny
= typename std::enable_if
<false == std::is_same<any, sT<T>>::value, bool>::type;
template <class T>
using isCpCtr
= typename std::enable_if
<true == std::is_copy_constructible<sT<T>>::value,bool>::type;
std::unique_ptr<anyB> ptr;
static std::type_info const & voidInfo ()
{ static auto const & ret = typeid(void); return ret; }
bool opLess (any const & a0) const
{
return
type().before(a0.type())
|| ( (type() == a0.type())
&& (false == empty())
&& ptr.get()->isLess(a0.ptr.get()) );
}
public:
template <typename T, typename = noAny<T>, typename = isCpCtr<T>>
any (T && v0)
: ptr(new anyD<sT<T>>(std::forward<T>(v0)))
{ }
bool empty () const noexcept
{ return ! bool(ptr); }
std::type_info const & type () const
{ return ( ptr ? ptr->typeT() : voidInfo()); }
friend bool operator< (any const &, any const &);
};
bool operator< (any const & a0, any const & a1)
{ return a0.opLess(a1); }
}
int main ()
{
try
{
yans::any ai { 12 };
yans::any as { std::string("t1") };
yans::any au { std::unordered_set<int> { 1, 5, 3 } };
std::cout << "ai < 13 ? " << (ai < 13) << '\n';
std::cout << "as < std::string {\"t0\"} ? "
<< (as < std::string {"t0"}) << '\n';
std::cout << "au < std::unordered_set<int> { 2, 3, 4 } ? "
<< (au < std::unordered_set<int> { 2, 3, 4 }) << '\n';
}
catch ( std::exception const & e )
{
std::cerr << "\nmain(): standard exception of type \""
<< typeid(e).name() <<"\"\n"
<< " ---> " << e.what() << " <---\n\n";
}
return EXIT_SUCCESS;
}
operator<() 背后的想法是,如果左操作数的类型小于右操作数的类型(根据 typeid(T).before()),并且如果类型匹配,则返回“true” , 以返回比较包含的值所返回的值。我知道这是一个有问题的解决方案,但我正在学习。
问题在于,在类 any 的实例中,可以包含没有 operator<() 的类型的值。在示例中,类 std::unordered_set
使用 clang++,我得到了我想要的:类 anyD
相反,在 g++ 中,类 anyD
我想了解的是:
根据 ISO c++11,clang++ 的行为或 g++ 的行为是正确的吗?
我能否在本地(仅在 lessF() 中),并且不声明“显式”any() 的模板构造函数的情况下,阻止两个 std::unordered_set
以下是两个程序的输出。
---- clang++ program output ----
ai < 13 ? 1
as < std::string {"t0"} ? 0
au < std::unordered_set<int> { 2, 3, 4 } ?
main(): standard exception of type "St13runtime_error"
---> no operator < for type <---
---- end output ----
---- g++ program output ----
ai < 13 ? 1
as < std::string {"t0"} ? 0
Errore di segmentazione
---- end output ----
最佳答案
我相信您发现了 gcc 中的一个错误(我以更短的形式复制了它 here,敬请期待)。
问题是,如果你查看段错误,你会看到 operator<
调用unordered_set<int>
是无限递归的。这是因为 gcc 实际上考虑了 bool operator<(const any&, const any&)
成为一场比赛。它不应该在你调用它的地方。
简单的解决方法是简单地确保 operator<(const any&, const any&)
仅找到any
的,无论您在哪个命名空间中。只需将定义移动到类中:
class any {
friend bool operator< (any const & a0, any const & a1) {
return a0.opLess(a1);
}
};
无论如何,这是一个很好的做法。
关于c++ - g++ 和 clang++ 与 operator<() 重载的不同行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35818163/
我目前正在尝试让 g++ 工作,并查看 http://gcc.gnu.org/install/build.html ,我似乎找不到它在哪里说如何“执行编译器的 3 阶段 bootstrap ”。我在哪
James Powell 在他对即将举行的演示文稿的简短描述中说,他自豪地发明了最粗糙的 Python 单行代码之一: (None for g in g if (yield from g) and F
请告诉我我的证明是否正确 We have a connected graph, and specific vertex u in V(G). Suppose we compute the dfs tr
下面的test2和test3结果是不同的。 我对此感到困惑,因为它看起来像相同的逻辑,并且与linux bash ||逻辑不同。 $data = @( [PSCustomObject]@{St
我试图找到一个明确的 G 代码语法规范,而不是单个 G 代码的含义,我无处不在的规范,我的意思是详细的语法规范,目的是编写解析器。 我编写解析器没有问题,我只是在寻找语法规范,例如。我知道您不必总是为
我写了这个 mixin,但它循环了很多时间。你能帮我优化我的代码吗?或者你能建议一些其他的东西来获得想要的结果吗? dfgdfgsdfgsdf 最佳答案 希望这就是您要找的。 $spaces: (4,
默认情况下,g++ 似乎会省略未使用的类内定义方法的代码。示例 from my previous question : struct Foo { void bar() {} void baz(
是否可以将文件内容通过管道传送到 g++编译程序? 我想这样做是因为我想使用数据库中的文件而不是磁盘上的物理文件。可以通过我制作的 API 轻松检索文件内容。 例如,我想做这样的事情: g++ con
如何profile c++代码获取每行代码的调用次数和消耗时间,就像profile工具一样在 Matlab 中呢? 我尝试使用-fprofile-arcs之类的东西,但它只生成代码覆盖率报告,其中可以
如何在几行代码上禁用所有警告。可以使用 GCC 诊断功能禁用特定警告,但是否有针对所有警告的标志。我尝试了这个方法,但不起作用 #pragma GCC diagnostic push #pragma
我有一个链接到 opencv 2.2 的可执行文件。但是,我删除了 opencv 2.2 并安装了 opencv 2.3。 问题是,有没有办法在不重新编译整个源代码的情况下将这个可执行文件链接到新的共
在编译带有一些标志的以下文件时,是否可以让 g++ 显示错误? #include using namespace std; int main() { int arr[ 2 ]; cout
在学习 Haskell 时,我遇到了一个挑战,要找到两个函数 f 和 g,例如 f g 和 f 。 g 是等价的(并且是总计,因此像 f = undefined 或 f = (.) f 这样的东西不算
根据我的理解,Theta 位于 Big O 和 Omega 之间,但我看到了这个声明,但我无法理解为什么交集会出现在这里。我能否对 Θ(g(n)) = O(g(n)) ∩ Ω(g(n)) 获得数学和分
我需要为这个递归函数编写一个迭代函数。 int funcRec(int n){ if(n>1) { return 2*funcRec(n - 1) + 3*funcRec(n
我在 github repository 上有代码示例并在 travis-ci 上创建了一个构建便于复制。 最小的、完整的和可验证的例子 可能不是最小的,但我相信它足够小 它使用 boost.inte
编辑:我们将调用箭头 p纯如果存在这样的函数f即:p = arr f . 我试图更好地掌握 Haskell 中的 Arrows,我想弄清楚什么时候 f >>> (g &&& h) = (f >>> g
我有两个(或更多)函数定义为: val functionM: String => Option[Int] = s => Some(s.length) val functionM2: Int => Op
好像是的。任何直观或严肃的证据都值得赞赏。 最佳答案 没有。 我认为您的问题等同于:给定函数 f 和 g,f 是 O(g) 或 g 是 O(f) 是否总是正确的?这在 SE Computer Scie
如果我设法证明 f(n) = o(g(n))(小 o),那么这两个函数的总和 f( n) + g(n) 应该被“更大”的函数 g(n) 紧紧束缚。 然而,我在证明这一点时遇到了一些麻烦。 最佳答案 以
我是一名优秀的程序员,十分优秀!