473,805 Members | 2,034 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

only static operators?

Greetings.

I have some questions that I would like to clear out.

1. Why do operators have to be static? (This question relates to the
language specification)

2. More importantly, couldn't there be operators that were tranlated at
compile-time to "normal" methods?

For example:

bool operator ==(T something);

would be translated to:

bool operator_equal( T something);

At code it would be used as:

T a = new T();
T b = new T();
if(a == b)
// ...

and it would be translated as:

T a = new T();
T b = new T();
if( a.operator_equa l(b) )
// ...

This translation would permit using overloaded operators in VB .NET and J#,
and maintain the C++ operators.
Plus, the Object class could have the == operator overloaded as:

public bool operator ==(object obj)
{
return Equals(obj);
}

The most important question is: Does someone know why wasn't this feature
placed in the CLS?
I don't see how it would break type safety.

Thank you for your attention.
Nov 16 '05 #1
3 1160
Silver Phoenix wrote:
Greetings.

I have some questions that I would like to clear out.

1. Why do operators have to be static? (This question relates to the
language specification)


T a = null;
if (someOtherCrite ria)
a = new T();
....
if (a != null)
// do something with a

-->

if (!(null reference).op_e qual(null))
--> NullReferenceEx ception

By making it static, both sides of the comparison is passed as
parameters. If you allowed the above, what would be the expected
behaviour when you did the above ? NullReferenceEx ception or yield false
as an implicit result ? if the latter, what about these two:

if (a == null)
if (a != null)

how would the compiler know what to yield in these two cases if a is
actually null, true in the first and false in the second ? that would
mean the compiler has pre-knowledge about how the operator would work
and in fact never call the method if a is null.

I see your point, but I'm not sure there would be a coherent
specification for this if you were to handle all the cases.

Also, this might be wrong:

if ((SomeBaseType) someDescendedOb ject == otherObject)
...

do you use the SomeBaseType comparison (since you typecasted) or do you
use the virtual op_equal operator defined in the object referred to by
someDescendedOb ject ? If the former, that would break the way "virtual"
works, if the latter you explicitly states that there is no way to get a
different behaviour when doing comparisons.

--
Lasse Vågsæther Karlsen
http://www.vkarlsen.no/
mailto:la***@vk arlsen.no
PGP KeyID: 0x0270466B
Nov 16 '05 #2
So simple, that I missed it.

Thank you.
Nov 16 '05 #3
Silver Phoenix wrote:
Greetings.

I have some questions that I would like to clear out.

1. Why do operators have to be static? (This question relates to the
language specification)

2. More importantly, couldn't there be operators that were tranlated at
compile-time to "normal" methods?

For example:

bool operator ==(T something);

would be translated to:

bool operator_equal( T something);

At code it would be used as:

T a = new T();
T b = new T();
if(a == b)
// ...

and it would be translated as:

T a = new T();
T b = new T();
if( a.operator_equa l(b) )
// ...

This translation would permit using overloaded operators in VB .NET and J#,
and maintain the C++ operators.
Plus, the Object class could have the == operator overloaded as:

public bool operator ==(object obj)
{
return Equals(obj);
}

The most important question is: Does someone know why wasn't this feature
placed in the CLS?
I don't see how it would break type safety.

Thank you for your attention.


Hi,

regarding your second question, overloaded operators *are* normal
methods, so, for instance, the + operator is translated to op_Addition.
Overloaded operators aren't part of the CLS as not all languages support
overloading of operators. BTW, CLS has nothing to do with type safety,
it just specifies which language constructs must be available in a
language for it to be CLS compliant.

Cheers,
Benoit
Nov 16 '05 #4

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

Similar topics

11
1693
by: Robert Sturzenegger | last post by:
We had a strange problem in a large project with the use of a string class in a static instance of a struct. I managed to reproduce the exactly same problem in a very short program (see below). When the constant SHORT_STRING_SIZE_LIMIT is set to 0, the program works as expected and outputs the string "+". When it is set to 7, it outputs garbage (a part of a non-initialized storage area). We are using gcc version 3.3 on SuSE Linux. ...
2
4209
by: Junaid Majeed | last post by:
Hi All i want to ask one question why do we use static keyword with opertor overloading in C#?, public static Op operator+(Op a,Op b) pls reply me as soon as possible junaidmajeed
0
840
by: Ioannis Vranos | last post by:
At http://msdn.microsoft.com/visualc/default.aspx?pull=/library/en-us/dnvs05/html/BakerDozen.asp this code sample is provided: // V2 Syntax public ref class Vector sealed {
2
2530
by: =?Utf-8?B?U2FtZWVrc2hh?= | last post by:
Suppose there are 2 classes A and B with a int parameter called 'val' in each. Both of them provide a public constructor with int type parameter. Suppose class A provides a explicit conversion operator taking B object as a parameter and returning an A object. A objA = new A(10); B objB = new B(5); objA = (A)objB; --call public static explicit operator A(B objB) --This method will return "new A(objB.val)"
0
9716
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
9596
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
10604
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...
1
10361
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
10103
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5536
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
4316
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
2
3839
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3006
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.