1
vote
1answer
66 views

How come assigning this obvious wrong type does not give a compiler error?

I'm currently in the process of trying to write a tree data structure. I was lead down this path after trying to create an iterator for my original data structure, and then learning about the STL ...
0
votes
5answers
75 views

How can I use a template in C++?

I wish to use a template that has a default parameter l in class A, but the program produces errors: class B { public: B(){ ... } } template <int l = 1> class A { public: ...
1
vote
3answers
106 views

C++, templates: get type of the item

There are two structures: template <typename T> struct AB { T a, b; AB <T> ( ) : a ( 0.0 ), b ( 0.0 ) {} }; template <typename T> struct ABList { typedef std::list ...
-1
votes
2answers
47 views

C++: Returning a templated object from a class, template type mismatch?

I have the following source code with a compiler error. Its obvious what I'm trying to do so I won't try explaining besides by saying that the type node<N>* being returned is not the correct ...
1
vote
1answer
35 views

Signature of a template method that returns a nested template gives compile error

I have template class with a nested template class like this #include <utility> template<typename K> class Tree23 { public: template<typename Key> class Node { ...
0
votes
3answers
53 views

Templated class returning “does not name type”

Thanks for looking at this. I know I'm missing something very obvious, but I have been stuck on this error for two hours now. Basically, when I compile my class, this is what is returned: makefile ...
1
vote
4answers
74 views

C++ templates - How to find whether the template type is a basic type or a class

I have code something like this template <typename T> void fun (T value) { ..... value.print (); //Here if T is a class I want to call print (), //otherwise use ...
-1
votes
2answers
45 views

C++ template return value

I need to implement a queue that serves for any datatype T using template, and one function I need to implement is called T getFirst() which returns the value of the first node my original approach ...
2
votes
2answers
61 views

What does reference with a template type mean?

In the code that I try to understand I see constructs like this: ref<date>(entry). Can anybody, please, explain what it can mean. I assume that we create a reference to the entry object but how ...
0
votes
1answer
48 views

Need help templatizing structure accessed by multiple threads

The problem requires implementing a ring buffer into which a producer writes and from which a consumer reads. I have done this for a data type. I want to extend this so that it will work for any ...
10
votes
2answers
189 views

Modify C++ template type T to be “long T”?

Is there any way to double the precision returned by multiply (to avoid overflow)? template<class T> class MyClass { T multiply (T a, T b) { return a * b; } } Something like: long T ...
5
votes
2answers
179 views

Idiom for strict typedef in C++

Is there an idiom for a strict typedef in C++, possibly using templates? Something like: template <class base_type, int N> struct new_type{ base_type p; explicit new_type(base_type i = ...
6
votes
4answers
88 views

Generic screws up non-related collection

Why do collections that are not related to the template class drop their type? Here is an example: (Sorry, it will not compile because of the error I'm confused about.) package test; import ...
0
votes
1answer
196 views

Display custom post types in grid Wordpress

I am trying to display custom post type (CPT) in a grid view similar to on this site: www.virtualpudding.com I have thoroughly searched google and Stackoverflow to no avail. It needs to have a ...
2
votes
3answers
59 views

Class that creates new containers for type known from its template member function's call

The question may be hard to understand but the problem is quite simple and I will describe it here in simple words. Right now, my resource managment is: cResMgr<cTexture> textures; ...
1
vote
2answers
64 views

Different functionality depending on type in templated classes

I was originally going to use a template for an Array-style class and just pass it a char* or an int, but I ran into problems when trying to implement things like: template<Typename T> class ...
1
vote
2answers
144 views

Converting Polymorphic Wrapper of type T to type U?

Consider the intention behind the following illegal C++11 code: struct Base { template<typename U> virtual U convert() = 0; }; template<typename T> struct Derived : Base { T ...
1
vote
1answer
95 views

C++ - Is There Any Point To using <class T> instead of <typename T> [duplicate]

Possible Duplicate: C++ difference of keywords ‘typename’ and ‘class’ in templates Is there any point/advantage to using: <class T> as opposed to: <typename T> in C++?
2
votes
2answers
528 views

C++ class with template member variable

I am trying to solve a programming problem that consists of an object (call it Diagram), that contains several parameters. Each parameter (the Parameter class) can be one of several types: int, ...
1
vote
2answers
75 views

typedef for qualified dependent types

I read this nice summary of how the typename keyword in C++ is used: http://pages.cs.wisc.edu/~driscoll/typename.html Still I wonder about a particular example: template<typename T> class ...
2
votes
1answer
107 views

How can I fake dependent types in C++ for non-constant, and local data?

Below is some code which almost works. What I want to do is create memory pools which autodelete their contents on destruction (it's okay if it only works for plain old data), and have a compile time ...
0
votes
3answers
92 views

Java generic operation result type

I'm not professional Java programmer, so this question could be simple, but I have searched the web for the answer but found nothing so far. Lets say we have a generic class in Java: public class C1 ...
4
votes
3answers
100 views

Get templated, template type

I am creating a small 'generic' pathfinding class which takes a class type of Board on which it will be finding paths, //T - Board class type template<class T> class PathFinder {...} Whereas ...
0
votes
1answer
106 views

Printing separate datatypes on top of two template stacks (C++)

c++ novice here. I'm currently trying to write a program involving templated stacks that can handle two separate data types, int and Student objects. While the stack logic of the program works fine, ...
2
votes
2answers
64 views

How to pass in a type to a class

I need to pass in a type to a class. The code below works but I was wondering if it is the best way to do this. Are there better ways? template<typename T, typename M> class BinaryParser { ...
1
vote
4answers
153 views

C++ Not Requiring Array Length with Recursive Sorting Algorithms

Some may or may not know that you can get the size of an array argument to a function using this code: template<typename DataType, size_t SIZE> void SortingAlgorithm(DataType ...
1
vote
2answers
54 views

Obtaining the derived type from an instance of the base type when many derived types are possible

I've seen solutions to this problem that suggest using if( dynamic_cast<DerviedType1*>( base ) ){ // Do something } else if( dynamic_cast<DerviedType2*>( base ) ){ // Do something ...
0
votes
2answers
132 views

C++ types are abstraction from addresses? - C++ templates

Unfortunately i have lost the link and the source for this article, but I do remember that it was about metaprogramming and templates in C++; when talking about the limitations around the template ...
0
votes
2answers
61 views

Template excluding one type

I want to make a parse function that excludes the type string or char template <typename T> bool parse(T & value, const string & token){ istringstream sin(token); T t; if( ...
1
vote
1answer
110 views

Class type as parameter AND as attribute

I have a Class (MyFactory) which produces objects of type A. (myFactory will be an instance) I want to allow users to extends the class A (to a Class B, for example), and override virtual methods of ...
0
votes
2answers
55 views

extracting the type in a template class for use in other templates

How do I extract the template type from a class: for example, I have a class like: template <typename T, typename T2 = def> class A { typedef T type; typedef T2 type2; //other ...
9
votes
1answer
124 views

Macro to get the type of an expression

Question I am trying to write a C++ macro that would take either type or type name as input, and give type as output. For example: REMOVE_NAME(int) should be int REMOVE_NAME(int aNumber) should also ...
3
votes
4answers
90 views

type inference when using templates

So here is what I would like to do: I use std::pair, but I would surely like to do the same using tuples, or indeed pretty much any kind of template. When assigning a pair variable, I need to type ...
0
votes
1answer
82 views

Determine Variable Type Passed to Template Function

I'm creating a little application and needs to use Template Functions. Pretty much it is supposed ask the user to enter 2 of some data type and then tell them which one of the two is greater. So as a ...
1
vote
1answer
94 views

How to cast to a variable type - emulating type variables in C++

I am implementing something similar to a typed genetic programming and have become a little stuck with regards to C++ types. I have a network of nodes, nodes have different types, for example some ...
9
votes
3answers
186 views

C++ automatic type casting : wrong behaviour for a container class

I'm implementing some classes for linear algebra operations on very small constant size vector and matrices. Currenty, when I do : MyMathVector<int, 3> a ={1, 2, 3}; MyMathVector<double, ...
1
vote
1answer
189 views

nested template types

I want to require a template type to be a templates type: template < template < int beta, typename gamma> class alpha > gamma foo() { // do stuff with beta, gamma gamma c[beta]; ...
1
vote
2answers
250 views

C++ function : Variadic templates with no arguments

I am not sure if this question is already answered. But here it goes: I was wondering if it's possible to do something like template<typename...classes> void createObject(){ //pass each ...
0
votes
1answer
148 views

Typecasting from class to integral type

In order to deal with vectors and fixed/dynamic allocation in some linear algebra problems, I built the following classes (which I would prefer not to modify ): // Traits : n is the size of the ...
3
votes
2answers
264 views

Perform different methods based on template variable type

Is there a way to determine the type of variable passed to a template and call a function based on if it's an int or std::string etc...? For example template <class T> struct Jam { Jam(T ...
1
vote
2answers
276 views

how to deduce the return type of a function in template

I am trying to write a template class named Binder that bind functions and parameters as whole, distinguished by the returning type of the binded function, this is my approach: template <typename ...
1
vote
1answer
759 views

C++ template operator overloading with different types

The example below defines a basic podtype container class. Using this class a series of typedefs are then created which represent an OOP version of the basic podtype. The problem originates when we ...
1
vote
2answers
104 views

Type inference for templatefunctions with templated parameters

What is the form (if there is one) to write template functions, where arguments are templated containers? For example I want to write a generic sum, which will work on any container which can be ...
5
votes
3answers
184 views

Why doesn't void take a void value in C++?

I'm curious why C++ does not define void via : typedef struct { } void; I.e. what is the value in a type that cannot be instantiated, even if that installation must produce no code? If we use gcc ...
4
votes
3answers
202 views

Template Class C++ - exclude some types

i recently created a template class which is working fine. Now i wanted to use "const int" (for example), but dynamic binding is forbidden. is there a possibility to exclude the type const int? ...
2
votes
2answers
194 views

How to distinguish a Template Type in C++

I have a template class, and would like to write a member method that's able to recognize what kind of type the template has been instantiated to. I need to create a string identifier containing the ...
2
votes
2answers
93 views

How to express constraints between members using templates?

Say I have a struct with a bunch of members: struct foo { int len; bar *stuff; }; As it so happens stuff will point to an array of bars that is len long. I'd like to encode this in stuff's ...
1
vote
4answers
469 views

Overriding a variable when extending a class with a different type in Java

I want to extend a class as shown in the below example. While extending, I just want to change the type of one variable; declaring the same variable name with a different type will do this? class ...
3
votes
1answer
172 views

C++ non-zero default value for numeric types - reinvention?

I have in mind a construct like this: template <typename T, T defaultValue> struct Numeric { Numeric(T t=defaultValue) : value(t) { } T value; T operator=()(T t); operator T(); ...
4
votes
3answers
102 views

Why exactly is this template function successfully compiling? [duplicate]

Possible Duplicate: Destructors of builtin types (int, char etc..) Template Function: template<typename T> void kill(T* type) { type->~T(); } Call: int x= 5; kill(&x); ...

1 2 3