gpt4 book ai didi

具有类似 friend 访问权限的 C++ 概念

转载 作者:可可西里 更新时间:2023-11-01 18:38:22 27 4
gpt4 key购买 nike

是否可以让这段代码按照我的意愿工作? IE。允许概念访问私有(private)成员函数?

template <typename T>
concept bool Writeable()
{ return requires (T x,std::ostream os) { { x.Write(os) } -> void }; }

template <Writeable T>
void Write(std::ostream &os,const T &x) { x.Write(os); }

class TT
{
private:
void Write(std::ostream &os) const { os << "foo"; }

//friend concept bool Writeable<TT>();
friend void ::Write<TT>(std::ostream &,const TT &);
};

谢谢

最佳答案

没有。明确不允许概念成为 friend 。

n4377 7.1.7/2

Every concept definition is implicitly defined to be a constexpr declaration (7.1.5). A concept definition shall not be declared with the thread_local, inline, friend, or constexpr specifiers, nor shall a concept definition have associated constraints (14.10.2).

我们可以将其缩减为这个示例,以表明访问确实是问题所在:

template <typename T>
concept bool Fooable = requires (T t) { { t.f() } -> void };

struct Foo
{
private:
void f() {}
};


int main()
{
static_assert(Fooable<Foo>, "Fails if private");
}

但是你可以使用一个间接级别,像这样:

template <typename T>
void bar(T t) { t.f(); }

template <typename T>
concept bool FooableFriend = requires(T t) { { bar(t) } -> void };

struct Foo
{
private:
void f() {}

template<typename T>
friend void bar(T t);
};


int main()
{
static_assert(FooableFriend<Foo>, "");
}

Live demo incorporating your example

哪个有效。概念还很早,所以我想象他们可能会取消 friend 限制,就像过去提案取消对 C++11/14 功能的限制一样。

关于具有类似 friend 访问权限的 C++ 概念,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37295690/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com