473,395 Members | 1,915 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,395 software developers and data experts.

ABCs (abstract base classes) and linkage problems

I m getting a ton of linkage errors (unresolved externals) when using an
abstract base class. My classes look something like this:

class BaseObject
{
//pure virtuals
virtual void foo() = 0;
virtual int foobar(int, int, double) = 0 ;

virtual void grok();
virtual int doit();
}
class MyClass : public BaseObject
{
//pure virtuals are implemented
void foo() {...}
int foobar(int a, int b, double c){return 42;}

//these are not implemented .. and not called in code
//virtual void grok();
//virtual int doit();

}
Linkage errors (unresolved externals):

BaseObject::BaseObject(void)
void grok()
int doit();
which leads to my questions:

i). Why is the linker looking for the constructor of the ABC BaseObject?
ii). Do I need to implement the constructor of BaseObject ? (this goes
against my understanding of most languages definition of an interface)
iii).Why is the linker looking to resolve the two (non pure) virtuals in
the interface - I dont use it any where in the code - and it is only
there for "future comapatability"

What am I doing wrong ?


Jun 3 '07 #1
4 1629
On Jun 2, 8:43 pm, Bart Simpson <123evergr...@terrace.comwrote:
I m getting a ton of linkage errors (unresolved externals) when using an
abstract base class. My classes look something like this:

class BaseObject
{
//pure virtuals
virtual void foo() = 0;
virtual int foobar(int, int, double) = 0 ;

virtual void grok();
virtual int doit();

}
; // missing semicolon
>
class MyClass : public BaseObject
{
//pure virtuals are implemented
void foo() {...}
int foobar(int a, int b, double c){return 42;}

//these are not implemented .. and not called in code
//virtual void grok();
//virtual int doit();

}
; // missing semicolon
>
Linkage errors (unresolved externals):

BaseObject::BaseObject(void)
void grok()
int doit();

which leads to my questions:

i). Why is the linker looking for the constructor of the ABC BaseObject?
Because even though the base object's ctor is not declared by you, the
compiler will generate one that is non-virtual and implemented
(assuming you declared your class appropriately).
ii). Do I need to implement the constructor of BaseObject ? (this goes
against my understanding of most languages definition of an interface)
No, that depends on what you do with that class. First, you must
declare a class. You didn't.
class Base { }; // is a class
class Base { } // is not
iii).Why is the linker looking to resolve the two (non pure) virtuals in
the interface - I dont use it any where in the code - and it is only
there for "future comapatability"

What am I doing wrong ?


Jun 3 '07 #2


Salt_Peter wrote:

<snip>
>
; // missing semicolon

>>Linkage errors (unresolved externals):

BaseObject::BaseObject(void)
void grok()
int doit();
</snip>

If you had bothered to read the title of this post, you would have
realized that these were linkage (not compiler) errors - hence your
nitpicking over missing semicolons, totally misses the point, and does
not add any useful information. The code snipet I posted was a summary
to give a gist/overview of the object heirarchy that illustrated what I
was contending with .... in any case, I managed to resolve the issue
myself (hence the deletion of the post)
Jun 3 '07 #3
On Jun 2, 10:21 pm, Bart Simpson <123evergr...@terrace.comwrote:
Salt_Peter wrote:

<snip>
; // missing semicolon
>Linkage errors (unresolved externals):
>BaseObject::BaseObject(void)
void grok()
int doit();

</snip>

If you had bothered to read the title of this post, you would have
realized that these were linkage (not compiler) errors - hence your
nitpicking over missing semicolons, totally misses the point, and does
not add any useful information. The code snipet I posted was a summary
to give a gist/overview of the object heirarchy that illustrated what I
was contending with .... in any case, I managed to resolve the issue
myself (hence the deletion of the post)
Please read the FAQ, something that is expected of you _before_
posting here, partcicularly this section:
http://www.parashift.com/c++-faq-lite/how-to-post.html
[5.8] How do I post a question about code that doesn't work correctly?

Jun 3 '07 #4
On Jun 3, 2:43 am, Bart Simpson <123evergr...@terrace.comwrote:
I m getting a ton of linkage errors (unresolved externals)
when using an abstract base class. My classes look something
like this:
class BaseObject
{
//pure virtuals
virtual void foo() = 0;
virtual int foobar(int, int, double) = 0 ;
virtual void grok();
virtual int doit();
}
class MyClass : public BaseObject
{
//pure virtuals are implemented
void foo() {...}
int foobar(int a, int b, double c){return 42;}
//these are not implemented .. and not called in code
//virtual void grok();
//virtual int doit();
}
Linkage errors (unresolved externals):
BaseObject::BaseObject(void)
void grok()
int doit();
which leads to my questions:
i). Why is the linker looking for the constructor of the ABC BaseObject?
Is it declared in the base class. The constructor of MyClass
will implicitly call it. If you don't declare it in the base
class, the compiler automatically generates one, which is
inline, so you shouldn't get any linker errors because of it.
If you do declare it, however, it will be called, and so you
must have an implementation.
ii). Do I need to implement the constructor of BaseObject ? (this goes
against my understanding of most languages definition of an interface)
If you declare it, you have to define it. If you're really
defining an interface, typically, you don't declare it, and
there's no problem.
iii).Why is the linker looking to resolve the two (non pure) virtuals in
the interface - I dont use it any where in the code - and it is only
there for "future comapatability"
A function which is declared virtual (but not pure virtual) is
"by definition" used as soon as you instantiate the class, or an
class derived from it. So you need a definition. (The reason
for this is that the compiler will typically want to put the
address of the function in the vtable.)

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 3 '07 #5

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

Similar topics

9
by: Christian Christmann | last post by:
Hi, I've a class Handler which contains a STL list std::list<Abstract*> mAbstract; which is storing elements of the abstract class Abstract. Further this class has a getElement function to...
3
by: Sunny | last post by:
Hi again, in the past I have posted here a problem with static methods and abstract classes, and Jon Skeet and Richard Lowe have helped me to clarify the things. But now I have found another...
3
by: Magne Ryholt | last post by:
I have a base class and a chain of derived classes. The base and its derived classes are all abstract except the last in chain (a concrete class). I want to provide some functionalities in the...
9
by: Sean Kirkpatrick | last post by:
To my eye, there doesn't seem to be a whole lot of difference between the two of them from a functional point of view. Can someone give me a good explanation of why one vs the other? Sean
9
by: silversurfer2025 | last post by:
Hello everyone, I am currently having problems with a C++ abstract class. I have a class FrameWork.h which defines some methods (of which some are abstract, i.e. virtual void method() = 0). In...
3
by: Ernesto Bascón | last post by:
Hi everybody: I have two questions: 1. I'm using opaque pointers in my classes to hide their data structures; there is a way to use opaque pointers in template classes; since the...
4
by: Paulo Matos | last post by:
Hi all, C++ FAQ Lite points you out to ABCs to define interfaces in C++, however, in a well-defined big system which may consist of a huge number of interfaces, the use of ABCs may incur in a...
4
by: Eric | last post by:
I was wondering what people thought about the information found at: http://g.oswego.edu/dl/mood/C++AsIDL.html Specifically, I am interested in the following recommendation: ---- Since...
0
by: emin.shopper | last post by:
I had a need recently to check if my subclasses properly implemented the desired interface and wished that I could use something like an abstract base class in python. After reading up on metaclass...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
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...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.