Tagged Questions
2
votes
1answer
49 views
Inheritance of templated class members in constructor
I posted a very similar question and got my answer. I'm now facing the same issue with the constructor..
How would one write the constructor for T2 ?
template<typename T>
class T1
{
...
1
vote
4answers
36 views
Unable to instantiate templated class inside another class
I have two classes: one templated, one not. I am trying to create an instance of the templated class inside the non-templated class and the program won't compile. I'm using Visual Studio 2012 and I ...
-2
votes
2answers
62 views
How to initialize a class Object of Typename T?
For a C++ class I am taking, I am creating a Vector Library. We are not allowed to use the built in vector library, of course, and I have decided to use arrays in my 'myvector' class.
I am currently ...
0
votes
2answers
56 views
C++ how to call templated constructor [duplicate]
How can I change the code below to allow creation of a Base object
with a templated constructor?
struct Base {
template <typename T>
Base(int a) {}
};
int main(int argc, char const *argv[])
{
...
0
votes
1answer
60 views
Template Constructor using STL iterators
I'm writting a hash table, but I've faced with a difficulty. I want to initialize it with contents of standart containers(vector, list and etc.), like a map:
map <string,int> ...
0
votes
1answer
18 views
boost char_ptr_holder instantiation
I'm trying to instantiate the following class defined in the boost libraries
defined in boost/interprocess/detail/segment_manager_helper.hpp
template<class CharType>
class char_ptr_holder
{
...
2
votes
3answers
44 views
Calling the constructor and initializing
What is the main different of these 2 and why doesn't the second one work when like this?
template <class T> MyStack<T>::Node::Node(T& input, Node* head):next(head),value(input) {}
...
1
vote
1answer
36 views
Class Template Object cannot be created
I am using templates in one of my classes, but for some reason, when i create an object, the error i am getting is the following: Argument list for class template "Test" is missing.
template ...
3
votes
3answers
102 views
member variable and constructor dependent on template parameter
In C++11, I'd like to have a member variable in a class and a constructor for its initialization only if its default template value was chosen (only for supported types like int, of course).
What are ...
3
votes
1answer
48 views
C++ - Use inferred template argument from constructor as template argument throughtout class
I'd like to use the inferred type from the constructor argument as template arguments throughout the rest of my class. Is this possible?
Something like this:
class AnyClass
{
public:
...
2
votes
2answers
69 views
Inherit constructors from template base class without repeating template arguments?
How do I inherit constructors from a template base class without repeating the template arguments (and without using macros):
For example, this does not work (using GCC 4.8):
template <typename ...
2
votes
1answer
58 views
C++ templated constructors: Do they prevent certain types from being inferred?
If I have code like
struct Foo
{
template<class T>
Foo(T arg) { }
};
does that prevent T from ever being const, volatile, or a reference?
Similarly, if I have
struct Bar
{
...
0
votes
1answer
72 views
construct string like object from literal whose size is known at compile time
Any one can help explain how the following constructor works,
class StringData {
public:
/**
* Constructs a StringData explicitly, for the case of a literal whose size is known at
* ...
2
votes
1answer
115 views
Generic programming with concepts clashing with copy constructor
I'm trying to use a generic coding style to wrap a restricted concept API over generic stacks.
The problem I'm running into is that one of my constructors, the most important one that takes a ...
0
votes
1answer
56 views
c++ is default constructor called in parametrized constructor?
I have the following template class:
template<typename T, int nSize> class Stack{
private:
int m_nCurrentPos;
Array<T> m_tArray;
public:
Stack(int nCurrentPos = 0);
...
};
...
0
votes
2answers
85 views
c++ how does a class derived from a template call the template's constructor?
I didn't really know how to call this thread.
The situation is the following. I have a template class Array<T>:
template <typename T> class Array{
private:
T* m_cData;
int ...
3
votes
1answer
119 views
derived class calls wrong base class constructor [duplicate]
Can you explain the output of the following code? And what do I need to do to call the right base class constructor?
Thanks.
#include <vector>
#include <iostream>
template <class ...
4
votes
1answer
72 views
templated placement new and destructor
why that does not compile?
template <typename T>
class Pool{
char Buff[sizeof(T)*256];
public:
Pool(){
T* item = reinterpret_cast<T*>(&Buff[0]);
for(int i ...
2
votes
3answers
62 views
initialization ignores constructor templates
While pursuing some errors, I stumbled upon the following behavior of initialization, which seems odd to me: While initialization checks for existing constructors, there seem to be cases were ...
0
votes
2answers
114 views
extern template constructor in c++
for quite some time i struggle with old-as-c++ problem of separating the implementation of a templated function from the definition. C++0x' extern seem to be a solution for this, but i fail to apply ...
0
votes
1answer
72 views
Fabric methods list for different arguments count
I have a such factories, which instantiate objects by passed template class name T:
template<class T>
class Factory0
{
public:
static void *Create(){ return new T(); }
};
template<class ...
1
vote
3answers
82 views
Constructor arguments from tuple
Suppose I have a template which is parametrized by a class type and a number of argument types. a set of arguments matching these types are stored in a tuple. How can one pass these to a constructor ...
2
votes
1answer
141 views
Supplying constructor for template parameter class without inheritance
I have a C++ class template. It takes a template parameter class T and stores an object of type T as a private member accessible through a method called data(). The code below demonstrates it. I'd ...
0
votes
0answers
174 views
C++ Error: Unable to read memory | Can't make an new object using the new operator [closed]
When the for loop in main calls push which calls Stack( T data ) function I get this error:
*"First-chance exception at 0x002B25C9 in pa3.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, ...
0
votes
2answers
98 views
No suitable constructor exists to convert from “const char[7]” to “TopicA”
I have a templated SortedLinkedList class that sorts Topic A objects by the value contained in their string field.
Here's Topic A:
struct TopicA
{
string sValue;
double dValue;
int iValue;
...
2
votes
6answers
105 views
“error: no matching function for call to”
I was on codepad and I was trying to build up my skills using C++. I'd never used templates much before, so I tried looking into how to use them. The code below is the result, and unfortunately, it ...
3
votes
1answer
160 views
Is there a generic way to forward constructor arguments?
I have a working Cloneable/CloneableImpl class pair below. It does its job as long as I have default constructors from child to parent.
Suppose Animal's constructor is modified to Animal( ...
3
votes
2answers
93 views
competing implicit and template copy constructors
In relation to this post, please explain this behavior:
#include <stdio.h>
struct B { B(B&) { } B() { } };
struct A {
template<typename T>
A(T&){ printf("A(T&)\n"); }
...
0
votes
2answers
124 views
Detect if a default constructor exists at compile time
I'm trying to check if a default constructor exists for a template argument.
I want to do something like this:
template <typename A>
class Blah
{
Blah() { A* = new A(); }
}
But i want to ...
-2
votes
3answers
150 views
C++ generic data structures - data field assignment-operator vs copy c'tor [closed]
Does using an assignment operator instead of copy c'tor in generic structures, considered as bad coding? Or it doesn't matter because perhaps it's widely assumed that if there is a special c'tor for a ...
6
votes
4answers
164 views
Template neglects const (why?)
Does somebody know, why this compiles??
template< typename TBufferTypeFront, typename TBufferTypeBack = TBufferTypeFront>
class FrontBackBuffer{
public:
FrontBackBuffer(
const ...
3
votes
3answers
100 views
Initialising nested templates
I'm trying to learn more about templates and have come across a problem I can't seem to solve. At the moment the class below works fine.
#include <iostream>
#include <vector>
#include ...
1
vote
2answers
1k views
“required from here” error declaring a List of Lists
I'm trying to declare a list of lists in this way:
List_vector<List_vector<int> > multilist;
But Eclipse underlines the above declaration and gives this error:
required from here
...
1
vote
2answers
109 views
How to call destructor of type in template?
For example, we have a function like that:
template <typename TYPE>
void construct_and_destruct(TYPE & object)
{
//...
}
We cant call constructor and destructor like object.Type() and ...
3
votes
3answers
76 views
Let the compiler make the final choice which type to use
This question requires knowledge of C++ template meta-programming as (indirectly) expression templates are involved. I say indirectly because its not directly a question on expression templates, but ...
6
votes
2answers
120 views
Inferring types whilst eliding moves/copies without a macro
Consider the following simple make_pair class:
template <class X, class Y>
struct Pair
{
X x;
Y y;
};
Also, we'll make a simple class to show any moves/copies:
struct C
{
C(int ...
0
votes
2answers
49 views
Template Init-constructor error
Hey I'm having trouble figuring out how to get my template header to work. I have to get my init constructor to take in an array and reverse it. So for example if I have [1,2,3,4] it takes it in ...
1
vote
1answer
134 views
Conversion between std::vector subclass with custom allocator and std::vectors
I have an advanced C++ question: Suppose I have a mmap_allocator
template class, which is a subclass of std::allocator template
class and a mmappable_vector template class which is a subclass
of ...
0
votes
1answer
125 views
Template inheritance
I have a class template in C++ and another class that inherits it. The latter is not a class template, as you will see. The problem appears when I try to define the constructor of the derived class, ...
-2
votes
2answers
271 views
Definition or redeclaration of 'GetInstance' not allowed inside a function
I am trying to create an instance of a singleton class inside of a wrapper in a multithreaded environment. I am using the wrapper to ease my work and not to write multiple times Lock and Unlock in ...
1
vote
3answers
340 views
Template constructor in template class must be defined in the class definition?
suppose I write a template class with a template constructor, like that.
template<typename T>
class X{
template<typename S>
X(X<S> x){}
};
compiles fine. However, when I ...
0
votes
3answers
122 views
how to convert between a container of a derived type to a container of a base type
I have a C++03 application with a class that holds a single instance of a type where I am trying to convert between a holder of a derived type to a holder of a base type. For example:
class B { ...
5
votes
2answers
260 views
New C++ Template class Constructor that takes a type of itself as an argument
I'm working on a template Class in C++ similar to the ArrayList in java (yes I know vector does the same thing, this is not a utilitarian coding project).
I figured it would be useful to have a ...
0
votes
1answer
172 views
memset leaking mem at template class constructor
This class ctor is leaking memory, I cant say what is going on.
How I know? If I comment out the second ctor line, the leak goes away.
template< class T, int fixedSize >
class Resource_Cache{
...
1
vote
2answers
312 views
templated singleton class - how to handle private constructor
I realize how many times this have been talked about but I have not found an appropriate solution for my problem. I have just implemented a Meyer's singleton class into my project but I would like to ...
1
vote
1answer
258 views
invalid template argument for 'N', expected compile-time constant expression
I'm creating a high precision floating point library (for educational purpose) and the constructors are shown below.
The idea is to have a generic constructor (the first one) and then 2 specialized ...
0
votes
4answers
106 views
C++ expected a shallow copy but not exactly
Following is a template class of Vector which stores different types of data elements. check the code of copy constructor and in the main. What I was expecting that the statement "cout << ...
3
votes
2answers
588 views
Determine the number and type of the class constructor's parameters in C++?
How could one determine the number and type of the class constructor's parameters?
To do that for a member function is just a piece of cake:
template <class T, typename P0, typename P1, typename ...
1
vote
2answers
483 views
C++ single constructor template specialization
Sorry if this is a dupe. There are many similar questions but it seems that none really addresses this problem. They are all a bit different.
So what I want to achieve: Consider a template class ...
0
votes
2answers
151 views
templated conversion constructor fails to access protected data members
I have a templated class Rect with conversion constructor which allows conversion between Rect to Rect and vice a versa. But when compiling the code, the compiler gives an error stating the ...
