代码搜索:TTP
找到约 907 项符合「TTP」的源代码
代码结果 907
www.eeworm.com/read/470720/1445977
c ttp40.c
#include
template class C
{
DD d;
public:
int f();
};
template int C::f()
{
DD d2;
retur
www.eeworm.com/read/470720/1445986
c ttp56.c
// Build don't link:
// by Paul Burchard , Level Set Systems, Inc.
// Copyright (C) 1999 Free Software Foundation
template
class A {
};
template
class B {
};
t
www.eeworm.com/read/470720/1446009
c ttp26.c
template class D
{
public:
int f();
};
template int D::f()
{
return sizeof(T)+sizeof(U);
}
template class C
{
D
www.eeworm.com/read/470720/1446049
c ttp60.c
// Origin: "Marcin 'Qrczak' Kowalczyk"
// Build don't link:
template t1 single()
{
return single();
}
template
www.eeworm.com/read/470720/1446050
c ttp7.c
// Build don't link:
template class D
{
};
template class C // ERROR - ref below
{
D d; // ERROR - arg not match
};
int main()
{
C c;
www.eeworm.com/read/470720/1446079
c ttp47.c
template void f(T)
{
}
template void f(T)
{
}
template class C {};
template class D {};
int
www.eeworm.com/read/470720/1446087
c ttp46.c
// Build don't link:
template void f() {}
template void f() {}
www.eeworm.com/read/470720/1446126
c ttp4.c
// Build don't link:
template class D
{
};
template class C
{
D d; // ERROR - arg not match
};
int main()
{
C c;
}
www.eeworm.com/read/470720/1446146
c ttp41.c
template class C
{
public:
int g() { return 1; }
};
template class D
{
public:
int f();
};
template int D::f()
{
C c;
return c.g();
www.eeworm.com/read/470720/1446160
c ttp11.c
template class D
{
public:
int f();
};
template int D::f()
{
return sizeof(T);
}
template class C
{
D d;
public:
int f() { return d.