0

如果我想在 I == 10 的情况下在构造函数中设置断点怎么办?

template < typename T, int I >
class C 
{
public:

    C<T, I>() { cout << I << endl; }
};
4

1 回答 1

1

如果条件断点不起作用,请尝试

template < typename T, int I >
class C 
{
public:

    C() 
    {
       if(I == 10)
       {
*         int a= 0; //or try __debugbreak();
       }
       cout << I << endl;
    }
};

编辑 要打破特定课程,您可以std::is_same<T, U>::value在条件下使用(或增强模拟)

于 2013-03-20T11:05:27.110 回答