- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
跟随这个问题:How to negate a predicate function using operator ! in C++?
我想创建一个运算符!可以与从unary_function继承的任何仿函数一起使用。我试过了:
template<typename T>
inline std::unary_negate<T> operator !( const T& pred ) {
return std::not1( pred );
}
Error 5 error C2955: 'std::unary_function' : use of class template requires template argument list c:\program files\microsoft visual studio 10.0\vc\include\xfunctional 223 1 Graphic
Error 7 error C2451: conditional expression of type 'std::unary_negate<_Fn1>' is illegal c:\program files\microsoft visual studio 10.0\vc\include\ostream 529 1 Graphic
Error 3 error C2146: syntax error : missing ',' before identifier 'argument_type' c:\program files\microsoft visual studio 10.0\vc\include\xfunctional 222 1 Graphic
Error 4 error C2065: 'argument_type' : undeclared identifier c:\program files\microsoft visual studio 10.0\vc\include\xfunctional 222 1 Graphic
Error 2 error C2039: 'argument_type' : is not a member of 'std::basic_ostream<_Elem,_Traits>::sentry' c:\program files\microsoft visual studio 10.0\vc\include\xfunctional 222 1 Graphic
Error 6 error C2039: 'argument_type' : is not a member of 'std::basic_ostream<_Elem,_Traits>::sentry' c:\program files\microsoft visual studio 10.0\vc\include\xfunctional 230 1 Graphic
Error 3 error C2831: 'operator !' cannot have default parameters c:\visual studio 2010 projects\graphic\graphic\main.cpp 39 1 Graphic
Error 2 error C2808: unary 'operator !' has too many formal parameters c:\visual studio 2010 projects\graphic\graphic\main.cpp 39 1 Graphic
Error 4 error C2675: unary '!' : 'is_prime' does not define this operator or a conversion to a type acceptable to the predefined operator c:\visual studio 2010 projects\graphic\graphic\main.cpp 52 1 Graphic
#include <iostream>
#include <functional>
#include <utility>
#include <cmath>
#include <algorithm>
#include <iterator>
#include <string>
#include <boost/assign.hpp>
#include <boost/assign/std/vector.hpp>
#include <boost/assign/std/map.hpp>
#include <boost/assign/std/set.hpp>
#include <boost/assign/std/list.hpp>
#include <boost/assign/std/stack.hpp>
#include <boost/assign/std/deque.hpp>
struct is_prime : std::unary_function<int, bool> {
bool operator()( int n ) const {
if( n < 2 )
return 0;
if( n == 2 || n == 3 )
return 1;
if( n % 2 == 0 || n % 3 == 0 )
return 0;
int upper_bound = std::sqrt( static_cast<double>( n ) );
for( int pf = 5, step = 2; pf <= upper_bound; ) {
if( n % pf == 0 )
return 0;
pf += step;
step = 6 - step;
}
return 1;
}
};
/*
template<typename T>
inline std::unary_negate<T> operator !( const T& pred, typename T::argument_type* dummy = 0 ) {
return std::not1<T>( pred );
}
*/
inline std::unary_negate<is_prime> operator !( const is_prime& pred ) {
return std::not1( pred );
}
template<typename T>
inline void print_con( const T& con, const std::string& ms = "", const std::string& sep = ", " ) {
std::cout << ms << '\n';
std::copy( con.begin(), con.end(), std::ostream_iterator<typename T::value_type>( std::cout, sep.c_str() ) );
std::cout << "\n\n";
}
int main() {
using namespace boost::assign;
std::vector<int> nums;
nums += 1, 3, 5, 7, 9;
nums.erase( remove_if( nums.begin(), nums.end(), !is_prime() ), nums.end() );
print_con( nums, "After remove all primes" );
}
最佳答案
这是一种基于“替代失败不是错误”(SFINAE)原理的方法。这说明在重载解析期间,如果C++编译器尝试实例化模板并遇到问题,则不会触发编译错误。相反,它只是从考虑中删除该特定模板。这里的想法是,如果您重载一个函数(即,许多具有相同名称但参数不同的不同函数),其中一些是模板,而某些不是,则如果其中之一是模板,则永远不会出现编译器错误候选模板功能没有任何意义。
这种特殊的技术可以通过两种不同的方式帮助您。首先,让我们现在假设有一个名为“IsAdaptable”的黑盒子,它可以查看一个类型并告诉我某个特定类型是否为自适应函数。有了这些信息,我们如何使您的operator !
函数仅适用于可适应的类型?好吧,使用SFINAE原理,在输入类型不适应的情况下,我们需要以某种方式使模板函数签名无效。有很多方法可以做到这一点,但是一种常见的方法是使用一个称为“启用if”的帮助程序模板。这是enable-if模板的完整实现:
template <bool Condition, typename T> struct EnableIf {
typedef T type;
};
template <typename T> struct EnableIf<false, T> {
// Empty
};
type
;如果条件为false,则根本不导出任何内容。
template <typename T>
ReturnType MyFunction(/* ... arguments ... */) {
/* ... body ... */
}
template <typename T>
typename EnableIf<Predicate<T>::value, ActualReturnType>::type MyFunction(/* ... arguments ... */) {
/* ... body here ... */
}
Predicate<T>::value
为true,则
EnableIf
最终导出一个称为
type
的嵌套类型,该类型与
ActualReturnType
等效,并且该函数照常工作。但是,另一方面,如果
Predicate<T>::value
为false,则
EnableIf
实例中没有嵌套的
type
类型。编译器检测到此情况,并且由于“替换失败不是错误”,因此将其从考虑中删除。如果仍然考虑其他可能的重载,则编译器将选择其中的其他一些重载。如果不是,那么它将报告错误,因为所有可能的
MyFunction
函数仍然无效。
operator !
:
template <typename Pred>
typename EnableIf<IsAdaptable<Pred>::value, std::unary_negate<Pred> >::type
operator! (const Pred& p) {
return std::not1(p);
}
operator !
函数仅适用于可调整函数的类型。”现在到了一半-给了
IsAdaptable
一个实现,我们就完成了。
IsAdaptable
根本不容易。它最终会使用一系列骇人听闻的技巧,以至于会让您哭泣。但是不要害怕!一旦看到了全局,这并不难理解。
IsAdaptable
起作用。这是该想法的简要概述。假设我们有两个函数,它们是另一个的重载,其中一个返回“Yes”类型,而其中一个返回“No”类型。然后,我们编写这些函数,以使"is"版本始终优先于“否”版本,但是"is"版本仅在某些给定类型可调整时才可用。在这种情况下,调用函数时,以下两种情况之一将成立:
template <typename T> Yes TestFunction(typename T::argument_type* argument);
template <typename T> No TestFunction(...);
T
进行参数化,并以
T::argument_type*
指针作为参数。第二个参数是varargs参数。现在,如果对于某些类型的
T
,我们尝试进行以下函数调用:
TestFunction<T>(NULL);
T
具有嵌套在其中的
argument_type
类型时,此函数的第一个版本才可用。第二个版本始终可用。但是,由于C++重载解析的工作方式,将永远不会在其参数列表更具体的某个函数上选择varargs函数(带有
...
的函数)。因此,如果
Yes
内嵌套了
T
,则上面的表达式的类型为
argument_type
,否则为
No
。我们快到了-如果我们能以某种方式检测到返回类型是什么,我们将进行测试以查看
T
是否适用!
Yes
和
No
,以便它们具有不同的大小:
typedef char Yes;
struct No {
char dummy[32];
};
sizeof(Yes) == 1
和
sizeof(No) > 1
。将所有这些放在一起,我们得到了
IsAdaptable
的最终版本:
template <typename T> struct IsAdaptable {
private:
typedef char Yes;
struct No {
char dummy[32];
};
template <typename U> static Yes test(typename U::argument_type*);
template <typename U> static No test(...);
public:
static const bool value = (sizeof(test<T>(0)) == sizeof(Yes));
};
test<T>(0)
返回
Yes
,则导出'true',否则返回
false
。请注意,因为
sizeof
实际上并不评估其参数(它只是告诉您它使用了多少字节),所以我们实际上不需要实现这两个函数中的任何一个。
template <bool cond, typename T> struct EnableIf {
typedef T type;
};
template <typename T> struct EnableIf<false, T> {
};
template <typename T> struct IsAdaptable {
private:
typedef char Yes;
struct No {
char buffer[32];
};
template <typename U> static Yes test(typename U::argument_type*);
template <typename U> static No test(...);
public:
static const bool result = (sizeof(test<T>(0)) == sizeof(Yes));
};
template<typename T>
inline typename EnableIf<IsAdaptable<T>::result, std::unary_negate<T> >::type operator !(const T& pred) {
return std::not1( pred );
}
关于c++ - 如何使negate_unary使用任何类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4598420/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!