我試圖編寫代碼,如here,但使用C++ 11功能,沒有Boost。如何使用類型特徵來進行條件編譯?
從this example工作,我試圖定義response_trait
,並基於條件編譯特性的結果。我該如何做這項工作?
#include <vector>
using namespace std ;
struct Vector{ float x,y,z ; } ;
struct Vertex { Vector pos ; } ;
struct VertexN { Vector pos, normal ; } ;
struct Matrix {} ;
template <typename T>
struct response_trait {
static bool const has_normal = false;
} ;
template <>
struct response_trait<VertexN> {
static bool const has_normal = true;
} ;
template <typename T>
struct Model
{
vector<T> verts ;
void transform(Matrix m)
{
for(int i = 0 ; i < verts.size() ; i++)
{
#if response_trait<T>::has_normal==true
puts("Has normal") ;
// will choke compiler if T doesn't have .normal member
printf("normal = %f %f %f\n", verts[i].normal.x, verts[i].normal.y, verts[i].normal.z) ;
#else
puts("Doesn't have normal") ;
printf("pos = %f %f %f\n", verts[i].pos.x, verts[i].pos.y, verts[i].pos.z) ;
#endif
}
}
} ;
int main()
{
Matrix m ;
Model<Vertex> model ;
model.verts.push_back(Vertex()) ;
model.transform(m) ;
Model<VertexN> modelNormal ;
modelNormal.verts.push_back(VertexN()) ;
modelNormal.transform(m) ;
}
您能否讓您的問題自成一體並描述您想要實現的目標? –
它是自包含的。 '#if''T'有'.normal'成員,'response_trait' has_normal'應該是true,並且應該選擇正確的編譯路徑。 – bobobobo
除非我完全誤解了類型特徵。相關的問題是我的出發點,但我不知道我是否採取了錯誤的方式。 – bobobobo