The class-template tag has no wiki summary.
5
votes
6answers
2k views
Template class inside class template in c++
noob here still experimenting with templates. Trying to write a message processing class template
template <typename T> class MessageProcessor {
//constructor, destructor defined
//Code ...
3
votes
1answer
64 views
Basic Java/Android class templates ( <?> )
I know this is a very basic question, but I haven't been able to find a way to word it to find the answer either here or through Google.
In the following code:
public void ...
2
votes
1answer
60 views
Template classes & operator overloading
How do I go about overloading a template class like below?
template <class T>
const_iterator& List<T>::const_iterator::operator++()
{
current = current->next;
return *this;
}
...
2
votes
1answer
53 views
How do I initialize template type variables?
template <class T>
void MyClass<T>::MyMethod()
{
// ...
// Which of the following initialization is better?
T MyVariable1 = 1; // 1st
T MyVariable2 = 2.0; ...
2
votes
1answer
214 views
Change default Visual Studio template for new Window and UserControl (WPF)
Where can I customize what Visual Studio puts into new class of certain type ? I want to add one line into template for WPF UserControl and Window so the code of new window when you create it looks ...
2
votes
4answers
2k views
Template class + virtual function = must implement?
This code:
template <typename T>
struct A
{
T t;
void DoSomething()
{
t.SomeFunction();
}
};
struct B
{
};
A<B> a;
is easily compiled without any ...
1
vote
1answer
142 views
Using typedefs from a template class in a template (non-member) function
The following fails to compile (with gcc 4.2.1 on Linux, anyway):
template< typename T >
class Foo
{
public:
typedef int FooType;
};
void
ordinary()
{
Foo< int >::FooType bar = 0;
...
0
votes
2answers
62 views
How to avoid redefinition error in case of in-class definition of friend function template?
Consider this code:
template<typename T>
class Base
{
template<typename U>
friend void f(void *ptr) {
static_cast<Base<U>*>(ptr)->run();
}
protected:
...
0
votes
1answer
65 views
C++ - Error when using class template
In file main.cpp...
#include "pqueue.h"
struct nodeT;
struct coordT {
double x, y;
};
struct arcT {
nodeT *start, *end;
double weight;
};
int arcComp(arcT *arg0, arcT *arg1){
...
0
votes
2answers
565 views
How to create a 2D array in C++ using this specific container
I'm trying to port a
int a[][]
from Java to C++. I'm using this class as a container ArrayRef for ints because it handles references, and the project uses it extensively. In the AbstractReader ...