473,382 Members | 1,752 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Partial Template Specialization

Hi group,

I have a problem with partial template specialization. In the code
below I have a template struct Music with one method, play(),
and three kinds of music, Jazz, Funk and Bach. When I specialize
Music<Bach>, I expect that the original play() method is available
in the specialization, but it is not. How can I fix this?

-X

struct Jazz{};
struct Funk{};
struct Bach{};
template<struct A>struct Music{void play(){}};
struct Music<Bach>{}; //partial template specialization
int main()
{
Music<Jazz>().play(); //OK
Music<Funk>().play(); //OK
Music<Bach>().play(); //error, Music<Bach>().play not declared
return 0;
}

Jul 19 '05 #1
8 7633

"Agent Mulder" <mb*******************@home.nl> wrote in message
news:bo**********@news4.tilbu1.nb.home.nl...
Hi group,

I have a problem with partial template specialization. In the code
below I have a template struct Music with one method, play(),
and three kinds of music, Jazz, Funk and Bach. When I specialize
Music<Bach>, I expect that the original play() method is available
in the specialization, but it is not. How can I fix this?

-X

struct Jazz{};
struct Funk{};
struct Bach{};
template<struct A>struct Music{void play(){}};
struct Music<Bach>{}; //partial template specialization
int main()
{
Music<Jazz>().play(); //OK
Music<Funk>().play(); //OK
Music<Bach>().play(); //error, Music<Bach>().play not declared
return 0;
}


I'm sure others will be able to give a more complete answer than I, but in
looking at your code, your specialization for Bach does indeed not have a
play() member function. In fact, it doesn't have any member functions or
data members - it's an empty class! I believe I'm correct in saying that
your partial specialization will have only what you explicitly put in it.
I'll rely on others to correct me if I'm wrong, but I think what I said is
correct...

Also, template<struct A> should be either template<typename A> or
template<class A> (these two are equivalent).
Jul 19 '05 #2
Agent Mulder wrote:
...
I have a problem with partial template specialization. In the code
below I have a template struct Music with one method, play(),
and three kinds of music, Jazz, Funk and Bach. When I specialize
Music<Bach>, I expect that the original play() method is available
in the specialization, but it is not. How can I fix this?
...
struct Jazz{};
struct Funk{};
struct Bach{};
template<struct A>struct Music{void play(){}};
struct Music<Bach>{}; //partial template specialization
This is not partial specialization. This is explicit specialization. And
the correct syntax is a s follows

template<> struct Music<Bach> {};
int main()
{
Music<Jazz>().play(); //OK
Music<Funk>().play(); //OK
Music<Bach>().play(); //error, Music<Bach>().play not declared
return 0;
}
...


Explicit (or partial) specialization of a template is an independently
defined template. You defined it as a template class with no explicit
members. That's what you get when you instantiate the specialized
version - a class with no explicit members. It doesn't have method
'play()', hence the error.

If you want to have an explicit specialization of the entire
'Music<Bach>' and still have method 'play' in it, you have no other
choice but to declare and define this method in 'Music<Bach>' explicitly.

template<> struct Music<Bach> { void play( /* whatever */ ); };

On the other hand, if you just want to explicitly specialize the method
'play' for each kind of music, there is no need to explicitly specialize
the entire template 'Music'

struct Jazz {};
struct Funk {};
struct Bach {};

template<struct A> struct Music { void play(){} };

// Explicit specializations for method 'play()'
template<> void Music<Jazz>::play() { /* whatever 1 */ }
template<> void Music<Funk>::play() { /* whatever 2 */ }
template<> void Music<Bach>::play() { /* whatever 3 */ }

--
Best regards,
Andrey Tarasevich

Jul 19 '05 #3
Agent Mulder wrote:
...
template<struct A>struct Music{void play(){}};
...


BTW, something I haven't noticed right away: you cannot use keyword
'struct' to declare template parameters of a template. The only keywords
that can be used for this purpose are 'typename' and 'class'.

By using keyword 'struct' you are actually making an attempt to declare
a non-type parameter of type 'struct A'. This is illegal. Firstly,
non-type template parameters of class type are not allowed in C++. And
secondly, you don't even have a struct named 'A' in your program.

--
Best regards,
Andrey Tarasevich

Jul 19 '05 #4
"Agent Mulder" <mb*******************@home.nl> wrote in message
news:bo**********@news4.tilbu1.nb.home.nl...
Hi group,

I have a problem with partial template specialization. In the code
below I have a template struct Music with one method, play(),
and three kinds of music, Jazz, Funk and Bach. When I specialize
Music<Bach>, I expect that the original play() method is available
in the specialization, but it is not. How can I fix this?

-X

struct Jazz{};
struct Funk{};
struct Bach{};
template<struct A>struct Music{void play(){}};
struct Music<Bach>{}; //partial template specialization
int main()
{
Music<Jazz>().play(); //OK
Music<Funk>().play(); //OK
Music<Bach>().play(); //error, Music<Bach>().play not declared
return 0;
}

Maybe they use templates this way on the X-Files but... hehe

I would suggest this design instead:

class Music
{
public:
virtual void play() = 0;
virtual ~Music() {}
};

class Jazz : public Music
{
public:
virtual void play();
};

class Funk: public Music
{
public:
virtual void play();
};

etc.

--
Cy
http://home.rochester.rr.com/cyhome/
Jul 19 '05 #5
Thank you for your insightful responses. I fixed the design
by letting the template base and the template specialization
both inherit from the same class CD. This class CD has a virtual
play() method that gets called through a reference.

Still I am not satisfied. First, I need to forward declare struct
Bach. Second, both templates need to inherit class CD. What's the
use of template specialization if you lose everything that was
specified in the base template?

#include<iostream>
struct Bach; //forward declaration
struct CD{virtual void play(){cout<<"\nFeep-Honk-Feep-Honk";}};
template<class A>struct Music:CD{};
struct Music<Bach>:CD{void play(){cout<<"\nHonk-Honk-Feep-Feep";}};
struct Jazz{};
struct Funk{};
struct Bach{};
Music<Jazz>jazz;
Music<Funk>funk;
Music<Bach>bach;
int main()
{
CD&jazz=::jazz;
CD&funk=::funk;
CD&bach=::bach;
jazz.play();
funk.play();
bach.play();
return 0;
}

-------------------
output:
Feep-Honk-Feep-Honk
Feep-Honk-Feep-Honk
Honk-Honk-Feep-Feep

-X
Jul 19 '05 #6
"Agent Mulder" <mb*******************@home.nl> wrote in message
news:bo**********@news1.tilbu1.nb.home.nl...
Thank you for your insightful responses. I fixed the design
by letting the template base and the template specialization
both inherit from the same class CD. This class CD has a virtual
play() method that gets called through a reference.

Still I am not satisfied. First, I need to forward declare struct
Bach. Second, both templates need to inherit class CD. What's the
use of template specialization if you lose everything that was
specified in the base template?


What indeed? You don't need any templates to do what you are trying to do.
They just confuse the issue.

--
Cy
http://home.rochester.rr.com/cyhome/
Jul 19 '05 #7
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message news:a0*******************@twister.nyroc.rr.com...
"Agent Mulder" <mb*******************@home.nl> wrote in message
news:bo**********@news1.tilbu1.nb.home.nl...
Thank you for your insightful responses. I fixed the design
by letting the template base and the template specialization
both inherit from the same class CD. This class CD has a virtual
play() method that gets called through a reference.

Still I am not satisfied. First, I need to forward declare struct
Bach. Second, both templates need to inherit class CD. What's the
use of template specialization if you lose everything that was
specified in the base template?


What indeed? You don't need any templates to do what you are trying to do.
They just confuse the issue.


Templates I try to understand, not the inner working of Music<Bach>::play();
although you do seem to think so. Refer to Stroustrup 13.6 Derivation and
Templates for examples of how to organize your code around templates.

-X

I try to understand templates I try to understand. Not to implement Music<Jazz>::play(),
although you do seem to think so.
Jul 19 '05 #8
In article <bo**********@news4.tilbu1.nb.home.nl>,
mb*******************@home.nl says...
Hi group,

I have a problem with partial template specialization.
First and foremost that what you think is partial specialization is
really explicit specialization?

Partial specialization looks something like this:

template <class A, class B>
class X { ... };

template <class A>
class X<int, A> { ... };

The first is unspecialized -- either parameter can potentially be bound
to any type. The second is a partial specialization. We're specifying
what code will be produced when the first parameter happens to be int,
but the second parameter can still vary. The bottom line: to be partial
specialization, you have to have at least one each of specified
parameters and unspecified parameters. If you're specifying the types
of all parameters, you have an explicit specialization instead.
In the code
below I have a template struct Music with one method, play(),
and three kinds of music, Jazz, Funk and Bach. When I specialize
Music<Bach>, I expect that the original play() method is available
in the specialization, but it is not. How can I fix this?


No -- specialization is not inheritance. Each specialization (partial
or explicit) is independent of the primary template, and has to define
its own members. The members of a specialization may be completely
different from the members of the primary template.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Jul 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Paul MG | last post by:
Hi Template partial specialization always seems like a fairly straightforward concept - until I try to do it :). I am trying to implement the input sequence type (from Stroustrup section...
9
by: Philip Lawatsch | last post by:
Hi I'd like to implement some kind if type traits myself, but I have to support broken compilers (like visual studio) that do not support Partial Specialization. My first shot was something...
1
by: BekTek | last post by:
I'm still confused about the template partial specialization which is used in many libraries.. due to lack of introduction for beginner.. Could you tell me about that in short? Thanks in...
5
by: Levent | last post by:
Hi, Why doesn't this work? (tried with gcc 3.3.3 and VC++ 7.1): #include <iostream> template<class T, unsigned N> struct Foo { void func(); }; template<class T, unsigned N>
6
by: wkaras | last post by:
I tried a couple of compilers, and both gave errors compiling this: template <bool fin, typename T> T foo(T val); template <typename T> T foo<true, T>(T val) { return(val); } But both gave...
9
by: Marek Vondrak | last post by:
Hello. I have written the following program and am curious why it prints "1" "2". What are the exact effects of explicitly providing function template parameters at the call? Is the second...
9
by: Greg | last post by:
Hi, I would like to specify behavior of a class member relatively to template implemetation. It works in usual cases but it seems to fail with to templates when one of the two is specified... ...
10
by: jason.cipriani | last post by:
I never seem to be able to get this right. Here I have some code: template <typename T, int Nclass A { void f (T); }; template <typename Tvoid A<T,1>::f (T) { } template <typename Tvoid...
1
by: Ioannis Gyftos | last post by:
Hello, First the code :) /////////////////////////////////////////////////////////////////////////////////// // in another header file namespace LJC{
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.