473,748 Members | 10,048 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Subclassing a template causes problems

1 New Member
Hi! I am writing a program in which I need to keep track of how many objects of a given class exists at a time. The task is to do it using templates. The objects to be counted are of the class Note:
Expand|Select|Wrap|Line Numbers
  1. class Note : public Countable<Note> {
  2. private:
  3. ...
  4. public:
  5. Note();
  6. Note(double points, int time);
  7. Note(double points, string time);
  8. ~Note();
  9. ...
  10. };
Where Countable template is given as:

Expand|Select|Wrap|Line Numbers
  1. template<typename T> class Countable {
  2.     protected:
  3.         static int _currentCounter;
  4.     public:
  5.         Countable();
  6.         Countable(const Countable& c);
  7.         virtual ~Countable();
  8.         static int currentCounter();
  9. };
  10.  
  11. template<typename T> int Countable<T>::_currentCounter = 0;
  12. template<typename T> int Countable<T>::_allCounter = 0;
The Countable template is implemented as:

Expand|Select|Wrap|Line Numbers
  1. template<typename T> Countable<T>::Countable() {
  2.     ++_currentCounter;
  3. }
  4.  
  5. template<typename T> Countable<T>::Countable(const Countable& c) {
  6.     ++_currentCounter;
  7. }
  8.  
  9. template<typename T> Countable<T>::~Countable() {
  10.     --_currentCounter;
  11. }
  12.  
  13. template<typename T> int Countable<T>::currentCounter()  {
  14.     return _currentCounter;
  15. }

For Node class the constructors all call superclass constructors:
Expand|Select|Wrap|Line Numbers
  1. Note::Note() : Countable<Note>() {
  2.     points = 0;
  3.     time = 0;
  4. }
and similarly for other constructors. The ~Note() destructor is empty
Expand|Select|Wrap|Line Numbers
  1. Note::~Note() {}
The task was to modify a previous program and add this option - to count the Node objects. Earlier the whole program was working fine, but now, after introducing Countable and subclassing it by Note I get linker errors like:

Expand|Select|Wrap|Line Numbers
  1. Note.o: In function `Note::Note(not-in-charge)()':
  2. Note.cpp:(.text+0xbcd): undefined reference to `Countable<Note>::Countable(not-in-charge)()'
  3. Note.o: In function `Note::Note(in-charge)(double, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
  4. Note.cpp:(.text+0xd1b): undefined reference to `Countable<Note>::Countable(not-in-charge)()'
  5. Note.cpp:(.text+0xd88): undefined reference to `Countable<Note>::~Countable (not-in-charge)()'
  6. Note.o: In function `Note::~Note (not-in-charge)()':
  7. Note.cpp:(.text+0xdaa): undefined reference to `Countable<Note>::~Countable (not-in-charge)()'
And so on, wich [not-in-charge] errors. What does that mean? Is there something wrong with calling these constructors and destructors?
The Note objects are always created as Note - no class "knows" in any way that Note is a subclass of Countable. Maybe here lies a mistake - should I create the objects in some other way? Thanks for any help.

PS. The task *has* to be solved using such form of template subclassing...
Nov 6 '06 #1
0 1901

Sign in to post your reply or Sign up for a free account.

Similar topics

2
5160
by: BJörn Lindqvist | last post by:
A problem I have occured recently is that I want to subclass builtin types. Especially subclassing list is very troublesome to me. But I can't find the right syntax to use. Take for example this class which is supposed to be a representation of a genome: class Genome(list): def __init__(self): list.__init__(self) self = ....
2
2929
by: Nikolai Borissov | last post by:
Is it possible to specialize a templated class defined within another templeted class, like below: template<typename U> struct A { template<typename T> struct B; }; // Attempt to specialize internal class B for type int
5
1364
by: Andy Fish | last post by:
Hi, I'm trying to achieve something like subclassing in XSLT, by which I mean that I have stylesheet A and I want to make a more specialised "subclass" called stylesheet B. which inherits most of the functions but overrides some templates. the closest I can think of getting is to write template B including template A, and then put templates in B with the same "match" clause but with a higher priority than A. Unfortunately, a key...
8
6740
by: Massimiliano Alberti | last post by:
Can I specialize a template function in a subclass without overriding it? (the main template function is defined in a base class). Now I'm doing something like that: (in base class) template<class X> void myfunc(X par1) { } (in derived class) template<class X>
3
2090
by: learning_C++ | last post by:
I hope to use template. in my code I hope to sum the vector<int> and vector<double>. But there are several errors: sumtemplate.cpp:6: error: ISO C++ forbids declaration of `sum' with no type sumtemplate.cpp: In function `int sum(std::vector<T, std::allocator<_CharT> >&) ': sumtemplate.cpp:7: warning: `std::vector<T, std::allocator<_CharT> >::iterator'
5
6489
by: Pieter Linden | last post by:
Hi, This question refers sort of to Rebecca Riordan's article on Access web about subclassing entities: http://www.mvps.org/access/tables/tbl0013.htm How practical is this? I am writing a database to track Computer equipment/inventory as well as other devices. Computers, of course, have software installed, so I want to keep track of that. I was
4
1512
by: pietlinden | last post by:
Hi, I have the sort of standard Donors/Donations DB. The twist I have is that donations can be time, money (which are easy, because they're additive), but then a donor can make an in-kind pledge, of say 3 chairs and a table. Normally, in subclassing the donation, I would end up with something like this: standard donor DB of just money/time:
3
2708
by: jackstah | last post by:
I've read before that subclassing off of std::vector is a bad idea because it's a concrete class. I understand, but there shouldnt be any issues with this. I just wanted to do a simple example in my project to combine templates and inheritance so that I would brush up on both. I have data that is mostly sorted, but there might be some flipflops here and there. Thus I've subclassed off of vector, and written a class that, given a...
1
1409
by: Christian Heimes | last post by:
Rick King schrieb: datetime.date is a C extension class. Subclassing of extension classes may not always work as you'd expect it. Christian
0
8989
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8828
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9537
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9367
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9319
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8241
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4599
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3309
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2213
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.