473,799 Members | 3,209 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Question about conversion in expressions

Hi guys,

Just another question. Suppose I have 2 classes (incomplete code):

class A {
A(const B& b);
A& operator = (const A& a);
};

class B {
B(const A& a);
friend B operator + (const B& b1, const B& b2);
};

If I have code like:

{
A x, y, z;

x = y + z;
}

There is no + operator for A. Is it possible that the ctor of B makes
temporary objects of 'y' and 'z', then the + operator of B is called to
add x and y, and the result is converted back to class A with its ctor
and then assigned to x? Or am I talking complete nonsense here?

Thanx for any pointers,

Jeroen
Feb 28 '07
10 1480
On Mar 1, 12:03 pm, Jeroen <no_m...@thanx. comwrote:
terminator schreef:


On Feb 28, 8:25 pm, "terminator " <farid.mehr...@ gmail.comwrote:
On Feb 28, 5:02 pm, "terminator " <farid.mehr...@ gmail.comwrote:
>On Feb 28, 4:50 pm, Jeroen <no_m...@thanx. comwrote:
Hi guys,
Just another question. Suppose I have 2 classes (incomplete code):
class A {
A(const B& b);
A& operator = (const A& a);
};
class B {
B(const A& a);
friend B operator + (const B& b1, const B& b2);
};
If I have code like:
{
A x, y, z;
x = y + z;
}
There is no + operator for A. Is it possible that the ctor of B makes
temporary objects of 'y' and 'z', then the + operator of B is called to
add x and y, and the result is converted back to class A with its ctor
and then assigned to x? Or am I talking complete nonsense here?
Thanx for any pointers,
Jeroen
The compiler can not deduce how it should add z and y ;there maybe
other classes similar to B too.I suggest either of the following
lines:
x=B(y)+z;
x=y+B(z);
in either of these cases in contrast to wht you did the compiler is
able to pick 'B operator+(const B&,const B&)'.- Hide quoted text -
- Show quoted text -
Your code works unless another class that similar to B defines a
global binary operator+ and a constructor from an A is introduced.- Hide quoted text -
- Show quoted text -
class B;
class A{
public:
A(){cout<<"A()\ n";};
A(const B&){cout<<"A(B) \n";};
};
class B{
public:
B(){cout<<"B()\ n";};
B(const A&){cout<<"B(A) \n";};
friend B operator+(const B&,const B&);
};
B operator+(const B&,const B&){cout<<"B+B\ n";return B();};
//if you uncomment the following ,ambiguity error occurs.
/*class C{
public:
C(){cout<<"C()\ n";};
C(const A&){cout<<"C(A) \n";};
friend C operator+(const C&,const C&);
};
C operator+(const C&,const C&){cout<<"C+C\ n";return C();};*/
int _tmain(int argc, _TCHAR* argv[])
{
A x,y,z;
x=y+z;//ok:x=A(B(y)+B(z ));
return 0;
}

OK, thanks for the example. If I get this right, then C++ will try to do
any conversion in order to find a corresponding match with the required
operator, but it is a dangerous technique... I will avoid it :-)

Jeroen- Hide quoted text -

- Show quoted text -
if you define 'B' like this:

class B{
public:
B();
B(const A&);
B operator+(const B&); //binary operator as member function
};

then you have to write the code this way:

{
A x,y,z;
x=B(x)+z;//OK:x=A(B(x).B:: operator+(B(z)) );
x=y+z;//ERROR:no + for A.
};
Mar 3 '07 #11

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

Similar topics

11
25771
by: Dmitry D | last post by:
Hi, I'm new to C++ (started learning in the beginning of this summer), and I have the following question (sorry if it sounds stupid): In many code samples and source files, I see NULL expression being used (for example, int* someInt=NULL; ). I used similar initialization myself, and it works fine even if I don't define NULL. But what is "NULL" exactly? Is it a constant defined by compiler? Is there any difference between the following two...
16
5144
by: TTroy | last post by:
Hello, I'm relatively new to C and have gone through more than 4 books on it. None mentioned anything about integral promotion, arithmetic conversion, value preserving and unsigned preserving. And K&R2 mentions "signed extension" everywhere. Reading some old clc posts, I've beginning to realize that these books are over-generalizing the topic. I am just wondering what the difference between the following pairs of terms are: 1)...
19
1701
by: Randy Yates | last post by:
Consider the following code: #include "dsptypes.h" /* definitions */ #define VECTOR_LENGTH 64 /* local variables */
52
3077
by: junky_fellow | last post by:
char *str1 = "Hello"; char arr1 = { "Hello" }; char arr2 = { 'H', 'e', 'l', 'l', 'o' }; Is it legal to modify str1, arr1 and arr2 ?
28
2418
by: Wonder | last post by:
Hello, I'm confused by the pointer definition such as int *(p); It seems if the parenthesis close p, it defines only 3 integers. The star is just useless. It can be showed by my program: int main() {
65
4245
by: Steven Watanabe | last post by:
I know that the standard idioms for clearing a list are: (1) mylist = (2) del mylist I guess I'm not in the "slicing frame of mind", as someone put it, but can someone explain what the difference is between these and: (3) mylist =
14
2230
by: Richard G. Riley | last post by:
Would it be wrong to use "implicit casting" instead of the standards "implicit conversion" when talking about implicit conversions between certain data types. The standard mentions "explicit conversion" for a cast operation
40
2606
by: Why Tea | last post by:
What happens to the pointer below? SomeStruct *p; p = malloc(100*sizeof(SomeStruct)); /* without a cast */ return((void *)(p+1)); /* will the returned pointer point to the 2nd struct? */ Seems to me there is no guarantee it will. /Why Tea
0
953
by: =?Utf-8?B?TGFkaXNsYXYgTXJua2E=?= | last post by:
Hello, I have created my own simple ASP.NET expression. It looks like <%$ InstanceSettings:Name %>. It access NameValueCollection and returns string value. At the moment I need to convert this string to bool for one case because I use it to evalueate Visibility of column in templated grid view. I am trying to do something like this: <asp:BoundField Visible="<%$ InstanceSettings:UseOrg %>" .... but it fails because no implicit...
0
9541
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
10251
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
10228
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
9072
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...
1
7565
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6805
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5463
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...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2938
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.