Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
473 views

Use of typename keyword with template function parameters

In C++, the typename keyword is needed so the compiler can disambiguate between nested types and nested values in templates. However, there are certain situations where no ambiguity is possible, such ...
15
votes
5answers
6k views

Why do I need to use typedef typename in g++ but not VS?

It had been a while since GCC caught me with this one, but it just happened today. But I've never understood why GCC requires typedef typename within templates, while VS and I guess ICC don't. Is the ...
10
votes
1answer
473 views

Flexibility of template alias in C++0x

As I understand, template aliases in C++0x will allow us to do the following: template <typename T> using Dictionary = std::map< std::string, T >; Dictionary<int> ints; ints[ "one" ...
8
votes
6answers
229 views

Use of derived class' typedefs in base

I want the derived class to be a descendant of a template class. That class depends on descendant's members. In short I want this code to compile: struct IBootParams { virtual bool GetImmediate() ...
8
votes
2answers
242 views

Non-alphanumeric characters in COM/.NET interface names

I'm thinking of using the characters #@! in some COM interfaces our system generates. The COM type library is also exported to .NET. Will those characters cause me trouble later on? I've tested it ...
8
votes
2answers
7k views

C++ Get name of type in template

I'm writing some template classes for parseing some text data files, and as such it is likly the great majority of parse errors will be due to errors in the data file, which are for the most part not ...
7
votes
3answers
1k views

Use of typename keyword with typedef and new

Consider this code, template<class T> struct Sample { typename T::X *x; //declare pointer to T's X }; In the above code, the keyword typename is required by the compiler, so that it can ...
6
votes
1answer
159 views

C++ Nested Template Class Method Issue

I'm having a problem with the method declaration for a nested class template. I have something like this: template <typename T> class HashTrie { template <typename Y> class Entry ...
5
votes
5answers
162 views

multiple nested dependent names - where to stick the typename keyword?

This question was inspired by this other question. While trying to answer that question, I understood that I have a lot of questions myself. So... Consider the following: struct S1 { enum { value ...
5
votes
2answers
84 views

What are the use cases of not declaring the name for a typename in template?

Sometimes I see below kind of declaration: template<typename> // <-- not "typename T" struct A { ... }; What are the use-cases for such declaration. Are those useful or just a matter of ...
5
votes
2answers
123 views

Why is typename _not_ needed here in Visual Studio 2008/2010?

In this question, the asker has the following function: template<typename ITER> bool nextPermutation(ITER start, ITER end) { return nextPermutation(start, end, ...
5
votes
1answer
100 views

Errors in simple template code

template <class T> struct ABC { typedef typename T* pT; }; int main(){} The above piece of code gives errors expected nested-name-specifier before 'T' expected ';' before '*' ...
3
votes
3answers
116 views

Why is the keyword “typename” needed before qualified dependent names, and not before qualified independent names?

class A { static int iterator; class iterator { [...] }; [...] }; I (think I) understand the reason why typename is needed here: template <class T> void foo() { ...
3
votes
3answers
121 views

When is the “typename” keyword necessary? [closed]

Possible Duplicate: Officially, what is typename for? Where and why do I have to put the template and typename keywords? consider the code below: template<class K> class C { ...
3
votes
1answer
113 views

Using a typename nested in a template parameter

This is a mouthful, so here's a piece of code as an example: template<typename T> void foo(const T& a, typename T::value_type::value_type b) { } std::vector<std::vector<int>> ...
3
votes
2answers
86 views

VB.NET How do you name your variables that relate to their type?

Just wondering what everyone uses to name variables that relate to an already descriptive class? For example: Dim customersData as New CustomersData Dim customersCollection as CustomersCollection ...
3
votes
1answer
229 views

What is wrong with my usage of C++ standard library's find?

I'm trying to use the C++ standard library's find algorithm like this: template<class T> const unsigned int AdjacencyList<T>::_index_for_node( const std::vector<T>& ...
3
votes
4answers
218 views

When should I use the keyword “typename” when using templates

I've been working lately on a small project, and I couldn't figure out something.. I've been given a .h file that was containing a class, using a typename template. Inside that class there was a ...
3
votes
3answers
252 views

C++ using typedefs in non-inline functions

I have a class like this template< typename T > class vector { public: typedef T & reference; typedef T const & const_reference; typedef size_t size_type; ...
3
votes
4answers
582 views

C++ typename of member variable

Is it possible to get typename of a member variable? For example: struct C { int value ; }; typedef typeof(C::value) type; // something like that? Thanks
3
votes
2answers
780 views

Help storing an intrusive_ptr of a template class in a std::map

I have a small template class of type Locker contained within a boost::intrusive_ptr that I want to store inside a std::map: template <typename T> bool LockerManager<T>:: AddData(const ...
2
votes
2answers
74 views

Is there a way within Visual Studio to easily get qualified type names?

I'm looking for an extension/process for getting an object's assembly qualified type name within Visual Studio. I'm aware that you can write a quick console app to output this but find it to be a ...
2
votes
2answers
70 views

return a typedef type when using separate compilation

Here are the files I am working on: class.h #include <vector> using std::vector; template<class T> class test { private: vector<T> data; public: typedef vector<T> ...
2
votes
1answer
73 views

Reason for requiring typename in a template definition [closed]

Possible Duplicate: Where and why do I have to put “template” and “typename” on dependent names? This is a specific instance of the question: Officially, what is ...
2
votes
2answers
245 views

templates, typename, lambda -> dependent names not dependent?

Consider: template < typename Something > boost::function<void()> f() { typedef typename Something::what type; return [](){}; } In this code you need the typename because 'what' is ...
2
votes
3answers
1k views

C++ Template class using STL container and a typedef

I have a class looking like this: #include <vector> #include "record.h" #include "sortcalls.h" template< typename T, template<typename , typename Allocator = ...
2
votes
1answer
3k views

C++ Template Specialization

The following template specialization code template<typename T1, typename T2> void spec1() { } Test case 1 template< typename T1> //compile error void spec1<int>() { } Test ...
2
votes
5answers
539 views

Why is the use of typedef in this template necessary?

When I compile this code in Visual Studio 2005: template <class T> class CFooVector : public std::vector<CFoo<T>> { public: void SetToFirst( typename ...
1
vote
1answer
108 views

Why cant i access subtype via templates?

Here is an example. I get an error on typename T::SubType* inside of the template but not outside. using gcc0x i get prog.cpp: In instantiation of 'TemplateBase<A>': prog.cpp:8:36: ...
1
vote
2answers
309 views

Typedef inside template class doesn't work

I have a problem with the following code: template <typename U> class lamePtr { public: typedef U* ptr; }; template <typename U> class smarterPointer { public: void funFun() ...
1
vote
2answers
174 views

typename when defining map data that is a function pointer with a sprinkling of templates

This is a strange question because I already know the 'coding' answer. I just want to get a better understanding of why it is so. There are guru's here who have a knack of explaining these things ...
1
vote
3answers
303 views

C++ Templates and STL vector problem

I need help in the simple matter Im trying to create class #include <iostream> #include <vector> #include <algorithm> using namespace std; template<class T> class ...
1
vote
4answers
173 views

c++ templates without “typename” or “class”

i'm used to write templates like this: template<typename T> void someFunction(SomeClass<T> argument); however - now I encountered templates in another thread written like this: ...
1
vote
2answers
197 views

What is the purpose of “typename” in C++ [closed]

Possible Duplicate: Officially, what is typename for? When I use template <typename TMap> typename TMap::referent_type * func(TMap & map, typename TMap::key_type key) { ... } ...
1
vote
1answer
137 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; ...
1
vote
5answers
804 views

C++ templated constructor won't compile

How come I can't instantiate an object of type Foo with above constructor? I have a class Bar that uses an internal typedef (as a workaround for "template typedefs") and intend to use it in a ...
1
vote
4answers
1k views

How to take a typename as a parameter in a function? (C++)

I need to be able to pass a typename as a parameter: int X = FileRead(file, 9, char); The concept is for FileRead(std::fstream, int pos, ???) to read pos*sizeof(whatever the type is) to get the ...
0
votes
1answer
72 views

what should I return if I don't have something to return for an unknown type

For the following code, what should I return if I don't have something to return ? Currently, I do something like T() but I'm not sure it's correct and proper. template<typename T1, typename ...
0
votes
1answer
45 views

Clarification on UIDocument in IiOS 5

I need a little clarification working with UIDocument and I have 3 related questions -1. In the call: -(id)contentsForType:(NSString *)typeName error:(NSError **)outError from where does the ...
0
votes
2answers
63 views

Using typedef and typename inside a template

I want to define a type name in a templated class that I can use elsewhere to refer to the type of a member in the class. template <class T> class CA { public: //typedef typename ...
0
votes
1answer
22 views

Unable to compile nsgmls with template erros

I am a avid emacs user, and want to use sgml markup check routine. I was naturally headed towards nsgmls, and downloded the source code to compile it. However, there was a strange error coming from ...
0
votes
3answers
85 views

Template typename

Does the C++ standard somehow specify what can a T be in the following declaration: template <typename T> I mean, from practical terms of view this can be any particular type, which allows ...
0
votes
1answer
51 views

Declaring Multiple Client Functions Using STL

I don't know how to get to use more than one client function in a program with template I can do one function and have it work but when it comes to more than one and i attempt to use two or more , it ...
0
votes
1answer
71 views

Returning a double pointer to an object of template class

I have a template class: template<class T> class CVariable { //lines ommited }; and another class: class CLengthUnits:public CUnits { //lines ommited }; but when i try to return ...
0
votes
0answers
61 views

Typename for a subclass in main page class for an ObjectDataSource

I have a DAO class inside the webpage class of an aspx page. public partial class MyPage : System.Web.UI.Page { ... public class MyClassDAO { ... } } What is the ...
0
votes
1answer
135 views

C++ typename as variable

Suppose I have a template class MyClass. Is it possible to store the type of the template as an variable of the class? If so how? I'm curious if it's possible to do something like this. Template ...
0
votes
5answers
89 views

C++ templated class and init in constructor

I have a templated class, Foo : template <class A, class B> class Foo { public: Foo(A &aInstance); private: Attr<Foo> _attr; }; Then I have another templated class called ...
0
votes
2answers
71 views

access overloaded template functions

hey guys, i'm confused as to how to access an overloaded template function like this one: template <typename T> friend istream& operator>> (istream& in, Matrix& right) { ...
0
votes
0answers
174 views

C++ Vector of function pointers requiring typename [closed]

Possible Duplicates: Officially, what is typename for? Where and why do I have to put “template” and “typename” on dependent names? EDIT: Sorry, I searched but ...
0
votes
2answers
245 views

vector template conflicting declaration

I'm trying to implement a function that allows me to make a call like this // vec5 is a vector of tuples in my case // some code that to declare and fill vec5 ...

1 2