Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
7answers
331 views

Is there a way to use template specialization to separate new from new[]?

I have an auto pointer class and in the constructor I am passing in a pointer. I want to be able to separate new from new[] in the constructor so that I can properly call delete or delete[] in the ...
10
votes
4answers
406 views

C++ template specialization without default function

I have the following code that compiles and works well: template<typename T> T GetGlobal(const char *name); template<> int GetGlobal<int>(const char *name); template<> ...
9
votes
2answers
1k views

Specializing a template on a lambda in C++0x

I've written a traits class that lets me extract information about the arguments and type of a function or function object in C++0x (tested with gcc 4.5.0). The general case handles function objects: ...
8
votes
3answers
269 views

Specializing function template for reference types

Why is the output of this code : #include <iostream> template<typename T> void f(T param) { std::cout << "General" << std::endl ; } template<> void f(int& ...
8
votes
3answers
3k views

C# generic interface specialization

I wonder if it is in any way possible to specialize generic interface methods somehow in C#? I have found similar questions, but nothing exactly like this. Now I suspect that the answer is "No, you ...
8
votes
1answer
152 views

Templates specialization

I have the following set of templates: //1 template< typename T > void funcT( T arg ) { std::cout<<"1: template< typename T > void funcT( T arg )"; } //2 ...
8
votes
3answers
4k views

Template specialization based on inherit class

I want to make this specialized w/o changing main. Is it possible to specialize something based on its base class? i hope so. -edit- I'll have several classes inheriting SomeTag. I dont want to ...
7
votes
2answers
246 views

How to spot boxing/unboxing in Scala

Following a suggestion by extempore recently about how to get scala to tell me whether there was boxing going on by looking at the bytecode, I created this class: class X { def foo(ls : Array[Long]) ...
7
votes
2answers
223 views

template class member function only specialization

I am reading the Complete Guide on Templates and it says the following: Where it is talking about class template specialization. However, if you specialize a class template, you must also ...
6
votes
1answer
117 views

Partial template specialization ambiguity

I cant see why the statement in main is ambiguous. template<class T, class U, int I> struct X { void f() { cout << "Primary template" << endl; } }; template<class T, int I> ...
6
votes
1answer
144 views

C++ linking and template specializations

I'm studying the behavior of the C++ linker with respect to template specializations. I'm using Microsoft Visual C++ 2010 for these experiments. I don't know if the behavior is the same with other ...
6
votes
4answers
2k views

friend declaration declares a non-template function

I have a base Class akin to the code below. I'm attempting to overload << to use with cout. However, g++ is saying: base.h:24: warning: friend declaration ‘std::ostream& ...
6
votes
2answers
166 views

Using valid STATIC member function of class that can't be installed

I have following piece of code: It compiles without problems under gcc-3.4, gcc-4.3, intel compiler, but fails under MSVC9. MSVC tells "use of undefined type c_traits<C>, while compiling class ...
6
votes
2answers
2k views

Is making a function template specialization virtual legal?

In C++, a function template specialization is supposed to act exactly like a normal function. Does that mean that I can make one virtual? For example: struct A { template <class T> void ...
5
votes
1answer
96 views

Does Scala's specialization compose?

I was under the impression that specialization composes, but in the following example that doesn't seem to be the case: trait Key[ @specialized( Int ) A ] { def up( k: A ) : Unit } class Test[ ...
5
votes
1answer
140 views

Partial specialization with type nested in a templated class

I'm playing with templates and partial specialization, but there is one specialization I don't know how to write... I'll simplify code to make it easier to read. Let's condiser template <typename ...
5
votes
2answers
565 views

explicit specialization of template class member function

I need to specialize template member function for some type (let's say double). It works fine while class X itself is not a template class, but when I make it template GCC starts giving compile-time ...
5
votes
3answers
241 views

Ambiguous partial template specialization

I've got a trait class which I need to specialize (and partial-specialize) many times. Some partial specializations overlap: template< typename T > struct C { }; template< typename T1, ...
5
votes
4answers
1k views

Java generics (template) specialization possible (overriding template types with specific types)

I'm wondering what are the options to specialize generic types in Java, i.e. in a templated class to have specific overrides for certain types. In my case I was a generic class (of type T) to return ...
5
votes
3answers
159 views

Multiple types in one specialized D template

Say I have to deal ushort and uint some way, but string differently. So guess I need one specialized template for string and other to both ushort and uint. Is it? // for most void func(T)(T var) { ...
5
votes
1answer
198 views

Class Table Inheritance vs. Denormalization

I'm trying to model a specialization/generalization, leaning towards using class table inheritance (see this answer). However, my co-worker has maintenance and performance concerns because there will ...
5
votes
3answers
253 views

Help with type traits

Suppose we have the following template class template<typename T> class Wrap { /* ... */ }; We can not change Wrap. It is important. Let there are classes derived from Wrap<T>. For ...
5
votes
2answers
809 views

Template specialization of particular members?

Is it possible to specialize particular members of a template class? Something like: template <typename T,bool B> struct X { void Specialized(); }; template <typename T> void ...
5
votes
3answers
255 views

Templated class function T: How to find out if T is a pointer?

As a follow-up to this question: I need to decide in a class function like this: template< typename T > bool Class::Fun <T*> ( T& variable ) {...} whether T is a pointer or not. In ...
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 ...
5
votes
6answers
380 views

How do I shift programming specialties?

I've worked as an engineer in the mobile industry in Silicon Valley for the past 6 years. I've published a short book about Android and I've written code embedded in millions of handsets. If I ...
5
votes
9answers
355 views

How to find niche companies to work for

I'm a programmer specialized in a couple of non-mainstream fields. Think signal processing, DSP, assembler coding, low level graphics, embeddeed systems and so on. I'm currently looking out for a new ...
4
votes
2answers
84 views

block non-specialized template c++

Is it possible to somehow forbid using templated function for types for which specialization was not explicitly written. I mean something like that template <typename T> void foo(){} template ...
4
votes
2answers
64 views

Unrelated specialization must exist to compile?

The following code (which compiles and executes properly, doing what I want) is a minimal example of an oddity I experienced while writing a class to store properties of various types that needed the ...
4
votes
1answer
134 views

template specialization for a const pointer to a const type

I was reading http://bartoszmilewski.wordpress.com/2009/10/21/what-does-haskell-have-to-do-with-c/ and came across this code to check if a type is a pointer or not: template<class T> struct ...
4
votes
5answers
148 views

How can I specialize a typedef and its implicit type differently?

I have something like this: typedef int AnotherType; template <typename T> Func( T Value ); // And I want to specialize these two cases separately: template <> bool Func<int>( int ...
4
votes
3answers
247 views

Partial template specialization based on “signed-ness” of integer type?

Given: template<typename T> inline bool f( T n ) { return n >= 0 && n <= 100; } When used with an unsigned type generates a warning: unsigned n; f( n ); // warning: ...
4
votes
4answers
229 views

Partial Specialization of Operator()

One of my classes declares a templated function: template<class A, class B> A do_something(const std::vector<B> &data) which I'd like to partially specialize on typename A. B is a ...
4
votes
3answers
158 views

C++ basic template question

I'm slightly confused with template specialization. I have classes Vector2, Vector3 which have operator+= in it (which are defined the following way). Vector2& operator+=(const Vector2& ...
4
votes
3answers
155 views

Does this mimic perfectly a function template specialization?

Since the function template in the following code is a member of a class template, it can't be specialized without specializing the enclosing class. But if the compiler's full optimizations are on ...
4
votes
5answers
524 views

One template specialization for multiple classes

Let's assume we have a template function "foo": template<class T> void foo(T arg) { ... } I can make specialization for some particular type, e.g. template<> void foo(int arg) { ... } ...
4
votes
3answers
2k views

static member initialization for specialized template class

class A { }; template <typename A, int S> class B { public: static int a[S]; B() { a[0] = 0; } }; template<> int B<A, 1>::a[1]; ...
4
votes
2answers
366 views

specialization on const member function pointers

I am trying to specialize some utility code on const member functions, but have problems to get a simple test-case to work. To simplify the work i am utilizing Boost.FunctionTypes and its ...
4
votes
2answers
383 views

Template specialization with a templatized type

I want to specialize a class template with the following function: template <typename T> class Foo { public: static int bar(); }; The function has no arguments and shall return a result ...
4
votes
3answers
499 views

ambiguous template wierdness

I have the following code (sorry for the large code chunk, but I could not narrow it down any more) template <bool B> struct enable_if_c { typedef void type; }; template <> struct ...
4
votes
2answers
239 views

Which compiler is correct for the following overloading/specialization behavior?

Consider the following code: #include <stdio.h> namespace Foo { template <typename T> void foo(T *, int) { puts("T"); } template <typename T> struct foo_fun { static ...
4
votes
4answers
2k views

Is partial class template specialization the answer to this design problem?

Say you have a class who's job it is to connect to a remote server. I want to abstract this class to provide two versions, one that connects through UDP and the other through TCP. I want to build the ...
3
votes
1answer
47 views

How can I specialize argument types for inheritors of a class?

I want to have an abstract class Server with an abstract method called Initialize that passes a reference to IConnection, by reference. From there, a class deriving from this should be able to ...
3
votes
6answers
98 views

C++ template class specialization: why do common methods need to be re-implemented

In the sample: #include <iostream> using namespace std; class B { public: virtual void pvf() = 0; }; template <class T> class D : public B { public: D(){} virtual void ...
3
votes
3answers
109 views

template specialization in C++

I've been trying to understand template specializations. Why is this generating an error (specialization of 'T foo(T, T) [with T = int]' after instantiation) template <class T> T foo(T a, T b); ...
3
votes
3answers
105 views

Template specialization by another template (of same class)

I'm writing an array class. This array class can contain again arrays as members. When implementing a printing function, I need specializations. 26:template <class T> class array : public ...
3
votes
3answers
142 views

Why do these type arguments not conform to a type refinement?

Why does this Scala code fail to typecheck? trait T { type A } trait GenFoo[A0, S <: T { type A = A0 }] trait Foo[S <: T] extends GenFoo[S#A, S] I don't understand why "type arguments [S#A,S] ...
3
votes
4answers
160 views

Specialize template struct with template class as parameter

I'm trying to shape up my template skills (I know very little) by creating a library containing matrices and operations on those matrices. Basically, I want my matrix to be very strongly typed ...
3
votes
2answers
82 views

specializing on a subset of types in a C++ template

I have a question about template specialization in C++, and I am hoping someone here can help. I have a class that has 3 template parameters: template<class A, class B, class C> class myClass ...
3
votes
1answer
130 views

Specialization of template function after point of use will break the compilation

Consider next example : #include <iostream> template< int a > void foo(); int main(int argn, char* argv[]) { foo<1>(); } template<> void foo<1>() { ...

1 2 3