473,382 Members | 1,717 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.

Casting a class method in a constructor

Hi all,

I have come up against a problem when I am registering a callback
within a constructor. The code that I am writing contains a class that
deals with everything to do with bringing up a window in the OS (I'm
just trying to encapsulate everything that is particularly OS specific
in my code).

When the class is created the constructor is called and part of the
goodness of window creation involves registering a callback that deals
with messages passed between the OS and the window. The particular
callback code is a member of this window class.

It all goes something like this ....

class win {

public:
win::win();
LRESULT CALLBACK win::msghandler(arg1,arg2..);

}

win::win()
{
....
windowClass.lpfnWndProc = (WNDPROC)msghandler;
....
}

LRESULT CALLBACK win::msghandler(arg1,arg2..)
{
....
}
Hopefully I have made it clear that the way that the callback member
function is used is that it is cast to another type as part of the
constructor's window initialization.

Now the core of this code has all worked fine and dandy in C for me,
but when I port it to C++ it fails and it appears that it fails when
the compiler attempts to make the cast. I know that you should be able
to call member functions in constructors (and in this case it shouldnt
even be a problem with it not being initialized as it is merely being
registered for later use). The compiler I am using is MSVC 6.0 and (if
you hadnt guessed) its a win 32 system - but I dont think that the OS
is the problem here.

How do I get around the inability to compile?
- is it my lack of knowledge of C++ (I only recently have made the
transition from C :-). Ouch. )
- is it the compiler?

I dont want to split the constructor up into several functions as this
kind of violates the reasons for using C++ in the first place, and
though I can force it to work by declaring the callback as a static I
create other problems for myself elsewhere.

much thanks to everyone for your help and a happy new year - Mathew

Jan 1 '07 #1
2 1732
On Mon, 01 Jan 2007 14:52:30 -0800, tendots wrote:
Hi all,

I have come up against a problem when I am registering a callback
within a constructor. The code that I am writing contains a class that
deals with everything to do with bringing up a window in the OS (I'm
just trying to encapsulate everything that is particularly OS specific
in my code).
I'm strongly suspect you'll be much better off posting to an OS-specific
newsgroup:

http://www.parashift.com/c++-faq-lit...t.html#faq-5.9
When the class is created the constructor is called and part of the
goodness of window creation involves registering a callback that deals
with messages passed between the OS and the window. The particular
callback code is a member of this window class.

It all goes something like this ....

class win {

public:
win::win();
LRESULT CALLBACK win::msghandler(arg1,arg2..);

}

win::win()
{
...
windowClass.lpfnWndProc = (WNDPROC)msghandler; ... }

LRESULT CALLBACK win::msghandler(arg1,arg2..) { ... }
Not terribly helpful, because I haven't a clue from your code what LRESULT
or CALLBACK or WNDPROC or windowClass or ... are.
Hopefully I have made it clear that the way that the callback member
function is used is that it is cast to another type as part of the
constructor's window initialization.
But what you _haven't_ made clear is what the cast-from and cast-to
types actually are. This may well be relevant. BTW the code you post uses
a C style cast which may be valid C++ but may not behave the same in C++
as in C.
Now the core of this code has all worked fine and dandy in C for me, but
when I port it to C++ it fails
Fails to run? Fails to compile?
and it appears that it fails when the
compiler attempts to make the cast.
Ah. Fails to compile. And the error message is...?
I know that you should be able to
call member functions in constructors (and in this case it shouldnt even
be a problem with it not being initialized as it is merely being
registered for later use). The compiler I am using is MSVC 6.0 and (if
you hadnt guessed) its a win 32 system - but I dont think that the OS is
the problem here.

How do I get around the inability to compile? - is it my lack of
knowledge of C++ (I only recently have made the transition from C :-).
Ouch. )
Ummm... possibly
- is it the compiler?
Ummm... probably not

The problems are:

1) possibly wrong newsgroup, but not really sure, since
2) insufficient information supplied.

Please read the FAQ:

http://www.parashift.com/c++-faq-lite/how-to-post.html

before posting here.

--
Lionel B
Jan 2 '07 #2

<te*****@hotmail.co.ukwrote in message
news:11*********************@s34g2000cwa.googlegro ups.com...
Hi all,

I have come up against a problem when I am registering a callback
within a constructor. The code that I am writing contains a class that
deals with everything to do with bringing up a window in the OS (I'm
just trying to encapsulate everything that is particularly OS specific
in my code).

When the class is created the constructor is called and part of the
goodness of window creation involves registering a callback that deals
with messages passed between the OS and the window. The particular
callback code is a member of this window class.

It all goes something like this ....

class win {

public:
win::win();
LRESULT CALLBACK win::msghandler(arg1,arg2..);

}

win::win()
{
...
windowClass.lpfnWndProc = (WNDPROC)msghandler;
...
}

LRESULT CALLBACK win::msghandler(arg1,arg2..)
{
...
}
Hopefully I have made it clear that the way that the callback member
function is used is that it is cast to another type as part of the
constructor's window initialization.

Now the core of this code has all worked fine and dandy in C for me,
but when I port it to C++ it fails and it appears that it fails when
the compiler attempts to make the cast. I know that you should be able
to call member functions in constructors (and in this case it shouldnt
even be a problem with it not being initialized as it is merely being
registered for later use). The compiler I am using is MSVC 6.0 and (if
you hadnt guessed) its a win 32 system - but I dont think that the OS
is the problem here.

How do I get around the inability to compile?
- is it my lack of knowledge of C++ (I only recently have made the
transition from C :-). Ouch. )
- is it the compiler?

I dont want to split the constructor up into several functions as this
kind of violates the reasons for using C++ in the first place, and
though I can force it to work by declaring the callback as a static I
create other problems for myself elsewhere.

much thanks to everyone for your help and a happy new year - Mathew
The Microsoft Windows "Window Procedure" function cannot be a nonstatic
member function. Make it either a static member function or a non-member
function.

See the first three items at
http://www.parashift.com/c++-faq-lit...o-members.html

They don't discuss your exact issue, but similar ones of the same concept.

-Mike
Jan 2 '07 #3

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

Similar topics

13
by: JustSomeGuy | last post by:
I have two object types ClassA and ClassB class ClassA { public: int data; operator ClassB() { ClassB b; b.data = data + 1; return (b);
3
by: Kurt | last post by:
i just can't figure out why something im doing is not working correctly.... public interface IInterface { int someProperty { get; set; }
23
by: René Nordby | last post by:
Hi there, Is there anyone that knows how to do the following? I have a class A and a class B, that 100% inherits from class A (this means that I don't have other code in class B, than...
8
by: David Williams | last post by:
Hi all, I have a templated Vector3D class which holds (x,y,z) components as the specified type. I quite often wish to cast a Vector3D holding ints into a Vector3D holding floats and vice versa....
6
by: Spoon | last post by:
Hello everyone, I'm writing code where I can receive two kinds of packets. The first 12 octets are common to both packet types, i.e. they have the same semantics. The 1st type has 4 more...
7
by: S. Lorétan | last post by:
Hi guys, Sorry for this stupid question, but I don't know why it isn't working. Here is my (example) code: namespace Test { class A { public string Label1; }
3
by: per9000 | last post by:
Hi, can I reach a hidden method when doing ugly inheritance in python? .... def spin(self, n): print "A", n .... .... def spin(self, m): print "B", m .... .... def spin(self, k):...
19
by: jan.loucka | last post by:
Hi, We're building a mapping application and inside we're using open source dll called MapServer. This dll uses object model that has quite a few classes. In our app we however need to little bit...
5
by: petethebloke | last post by:
I'm not sure how to ask for what I want, so I can't find it on Google. I'll explain..... I have a class 'hanging' with a constructor: class hanging{ function hanging(){ }
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: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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
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...

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.