473,804 Members | 3,446 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Operator ?

Someone can explain me the meanings of the ? operator applied to
declarations like that i found...

private Point? startPoint;

if i delete the ? the compiler gives me some errors but i don't understand
what's the use of ? in that declaration position...
help me please

Jun 27 '08
38 1395
Peter Duniho wrote:
On behalf of the newsgroup generally,
Oh - you are official spokesperson for the newsgroup ...
I'm sorry that others disagree and
felt it necessary to criticize you for what is a perfectly normal and
reasonable approach to learning.
As far as I can tell then you are the only one in this thread that
has been criticizing anyone ...

Arne
Jun 27 '08 #21
"Someone can explain me the meanings of the ? operator applied to
declarations like that i found... " ... snip ...

Hi,

Nullable types on MSDN :

http://msdn2.microsoft.com/en-us/library/1t3y8s4s.aspx

This article was valuable to me when I was transitioning to .Net 2.0 : (but
much more valuable was reading up on the operators it mentioned in the
latest version of Liberty's "Programmin g C#" and, of course, on MSDN) :

http://www.codeproject.com/KB/cs/C__...ed_things.aspx

Note it describes ??

http://msdn2.microsoft.com/en-us/lib...8VS.80%29.aspx

as well as ? Most of the usages it mentions are NOT new to .NET 2.0,
however, but, imho, are less well known.

How delightful that we have ? as the ternary operator (in-line if/then/else
short-hand), and now for nullable types, and ?? for selecting a non-null
value from two nullable operands.

I look forward to the inevitable coming of : ??? ! :)

best, Bill

"Never stop learning, never stop testing, never stop questioning."


Jun 27 '08 #22
Peter Duniho schrieb:
You might consider therapy to help yourself with that. In the meantime,
you're just going to have to deal with being told to stop bullying
others and being bewildered as to why you've been told.
Peter, what's your problem? You're the only bully in this thread. Just
read your posts again. Then count to four and close this thread.

Thank you!
Jun 27 '08 #23
Bill Woodruff wrote:
"Someone can explain me the meanings of the ? operator applied to
declarations like that i found... " ... snip ...

Hi,

Nullable types on MSDN :

http://msdn2.microsoft.com/en-us/library/1t3y8s4s.aspx

This article was valuable to me when I was transitioning to .Net 2.0
: (but much more valuable was reading up on the operators it
mentioned in the latest version of Liberty's "Programmin g C#" and, of
course, on MSDN) :

http://www.codeproject.com/KB/cs/C__...ed_things.aspx

Note it describes ??

http://msdn2.microsoft.com/en-us/lib...8VS.80%29.aspx

as well as ? Most of the usages it mentions are NOT new to .NET 2.0,
however, but, imho, are less well known.

How delightful that we have ? as the ternary operator (in-line
if/then/else short-hand), and now for nullable types, and ?? for
selecting a non-null value from two nullable operands.

I look forward to the inevitable coming of : ??? ! :)
Would that be:

x = a ??? b!;

or

x = ???! b;

or

x ?= ?? b!;

?
>
best, Bill

"Never stop learning, never stop testing, never stop questioning."

Jun 27 '08 #24
Ben Voigt [C++ MVP] wrote:
Bill Woodruff wrote:
>"Someone can explain me the meanings of the ? operator applied to
declarations like that i found... " ... snip ...

Hi,

Nullable types on MSDN :

http://msdn2.microsoft.com/en-us/library/1t3y8s4s.aspx

This article was valuable to me when I was transitioning to .Net 2.0
: (but much more valuable was reading up on the operators it
mentioned in the latest version of Liberty's "Programmin g C#" and, of
course, on MSDN) :

http://www.codeproject.com/KB/cs/C__...ed_things.aspx

Note it describes ??

http://msdn2.microsoft.com/en-us/lib...8VS.80%29.aspx

as well as ? Most of the usages it mentions are NOT new to .NET 2.0,
however, but, imho, are less well known.

How delightful that we have ? as the ternary operator (in-line
if/then/else short-hand), and now for nullable types, and ?? for
selecting a non-null value from two nullable operands.

I look forward to the inevitable coming of : ??? ! :)

Would that be:

x = a ??? b!;

or

x = ???! b;

or

x ?= ?? b!;

?
>best, Bill

"Never stop learning, never stop testing, never stop questioning."

How about ??? for, and I don't know the term for this although I believe
it has one, reading objects from properties/fields on objects, and then
reading yet another propert/field on that object, etc., but stop on the
first null-reference.

For instance:

TreeNode node = = node ??? Parent ??? Parent ??? Parent;

to get the grand-grandparent of the node, if available.

Basically the above code (and I've seen the construct, only with :
instead of ??? I think) could be translated to:

TreeNode node;
if (node != null && node.Parent != null && node.Parent.Par ent != null &&
node.Parent.Par ent.Parent != null)
node = node.Parent.Par ent.Parent;
else
node = null;

But in lieu of the previous post, personally I like this particular
construct:

(bb | !bb)?
--
Lasse Vågsæther Karlsen
mailto:la***@vk arlsen.no
http://presentationmode.blogspot.com/
PGP KeyID: 0xBCDEA2E3
Jun 27 '08 #25
On Apr 14, 8:24 am, Lasse Vågsæther Karlsen <la...@vkarlsen .nowrote:
How about ??? for, and I don't know the term for this although I believe
it has one, reading objects from properties/fields on objects, and then
reading yet another propert/field on that object, etc., but stop on the
first null-reference.
I know in Groovy it's called the safe-dereference operator - but I
like their syntax for it, which is ?. so your example would be:

node?.Parent?.P arent?.Parent

Note that the type of each expression doesn't have to be the same -
because the result will be null if any of the dereferencing fails, the
overall expression type can just be the type of the full expression
with normal dereferencing, providing it's a nullable type. For
instance:

string boss = employee?.Manag er?.FullName;

where the types involved could be Employee, IManager, and string
respectively. That allows a handy conjunction with ?? as well:

string boss = employee?.Manag er?.FullName ?? "Unknown";

Jon
Jun 27 '08 #26
On Mon, 14 Apr 2008 04:15:34 -0700, Alain Boss <ma******@hotma il.com>
wrote:
Peter, what's your problem? You're the only bully in this thread.
If it's being a bully to tell a bully to stop bullying, yes. I suppose
you might be right. Otherwise, you don't have a leg to stand on.
Just read your posts again. Then count to four and close this thread.
If that's such good advice, I'm wondering why you are giving it rather
than following it.
Jun 27 '08 #27
On Apr 12, 6:38 pm, "Peter Duniho" <NpOeStPe...@nn owslpianmk.com>
wrote:
You'll find that it can be a little inconvenient, due to the fact that to
get back to a regular value type you have to explicitly cast from the
nullable version to the regular version (e.g. "Point point =
(Point)startPoi nt;"). This means without the cast, the "nullable" trait
tends to propagate through your code as you copy values from one variable
to another. :)
No need for a cast:
Point point = startPoint.Valu e;

Will work fine.. but you must test startPoint.HasV alue first.
Jun 27 '08 #28
Peter Duniho wrote:
On Mon, 14 Apr 2008 04:15:34 -0700, Alain Boss <ma******@hotma il.com>
wrote:
>Peter, what's your problem? You're the only bully in this thread.

If it's being a bully to tell a bully to stop bullying, yes. I suppose
you might be right. Otherwise, you don't have a leg to stand on.
>Just read your posts again. Then count to four and close this thread.

If that's such good advice, I'm wondering why you are giving it rather
than following it.
Well, i guess it would have been much easier for you to count to 2
rather than 4. I'm still not sure what you think it was where i bullied
anybody. It was you who called me stupid, it was you who told arne to
make a therapy. The only thing i regret is that i reply to another of
your useless posts. mea culpa!
Jun 27 '08 #29
On Mon, 14 Apr 2008 15:35:51 -0700, Alain Boss <ma******@hotma il.com>
wrote:
Well, i guess it would have been much easier for you to count to 2
rather than 4.
Not satisfied with calling the OP "not smart", you now choose to insult me
as well? No doubt you'll not understand why this most recent post of
yours was offensive as well.
I'm still not sure what you think it was where i bullied anybody.
I don't understand why you aren't sure of "what I think it was where you
bullied anybody", since the flow of messages is quite clear. The first
post to which I replied is the obvious candidate. Why else would I have
made the reply I did? The later post in which you reiterated your
assertion would be a second example.
It was you who called me stupid,
No, I didn't. The only post in which I used that word, I was referring to
Arne's assumption that the OP is working with production code.

It was the assumption itself that I was calling stupid, not the individual
making it, and you claim to not even have made that assumption anyway so
it wouldn't apply to you in any case, however you interpreted it.
it was you who told arne to make a therapy.
Only because he, like you, is incapable of recognizing when someone else
has made a valid point that hurts his pride. And only after he insisted
on engaging in his own bullying. It's hardly bullying to recommend to
someone that they seek professional help when they are in fact apparently
in need of it and demonstrate that repeatedly over a significant period of
time.

In any case, whether or not I was bullying a couple of bullies has nothing
to do with whether they are bullies in the first place.
The only thing i regret is that i reply to another of your useless
posts. mea culpa!
Yes, it's your fault.

Pete
Jun 27 '08 #30

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

Similar topics

7
8035
by: Paul Davis | last post by:
I'd like to overload 'comma' to define a concatenation operator for integer-like classes. I've got some first ideas, but I'd appreciate a sanity check. The concatenation operator needs to so something like this: 1) e = (a, b, c, d); // concatenate a,b,c,d into e 2) (a, b, c, d) = e; // get the bits of e into a,b,c, and d For example, in the second case, assume that a,b,c,d represent 2-bit integers, and e represents an 8-bit...
1
3880
by: joesoap | last post by:
Hi can anybody please tell me what is wrong with my ostream operator??? this is the output i get using the 3 attached files. this is the output after i run assignment2 -joesoap #include "BitString.h"
5
3808
by: Jason | last post by:
Hello. I am trying to learn how operator overloading works so I wrote a simple class to help me practice. I understand the basic opertoar overload like + - / *, but when I try to overload more complex operator, I get stuck. Here's a brief description what I want to do. I want to simulate a matrix (2D array) from a 1D array. so what I have so far is something like this: class Matrix
0
1836
by: Martin Magnusson | last post by:
I have defined a number of custom stream buffers with corresponding in and out streams for IO operations in my program, such as IO::output, IO::warning and IO::debug. Now, the debug stream should be disabled in a release build, and to do that efficiently, I suppose I need to overload the << operator. My current implementation of the stream in release mode is posted below. Everything works fine for POD type like bool and int, but the...
3
2961
by: Sensei | last post by:
Hi. I have a problem with a C++ code I can't resolve, or better, I can't see what the problem should be! Here's an excerpt of the incriminated code: === bspalgo.cpp // THAT'S THE BAD FUNCTION!!
6
4431
by: YUY0x7 | last post by:
Hi, I am having a bit of trouble with a specialization of operator<<. Here goes: class MyStream { }; template <typename T> MyStream& operator<<(MyStream& lhs, T const &)
3
18834
by: gugdias | last post by:
I'm coding a simple matrix class, which is resulting in the following error when compiling with g++ 3.4.2 (mingw-special): * declaration of `operator/' as non-function * expected `;' before '<' token <snip> --------------------------------------------------- template <class T> class matriz;
5
2295
by: raylopez99 | last post by:
I need an example of a managed overloaded assignment operator for a reference class, so I can equate two classes A1 and A2, say called ARefClass, in this manner: A1=A2;. For some strange reason my C++.NET 2.0 textbook does not have one. I tried to build one using the format as taught in my regular C++ book, but I keep getting compiler errors. Some errors claim (contrary to my book) that you cannot use a static function, that you must...
8
2491
by: valerij | last post by:
Yes, hi How to write "operator +" and "operator =" functions in a class with a defined constructor? The following code demonstrates that I don't really understand how to do it... I think it has something to do with the compiler calling the destructor twice. Could someone point out where I go wrong? P.S.: The error it gives is "Debug Assertion Failure ....." (at run time) P.P.S: Everything else works just fine (without the use of...
3
3286
by: y-man | last post by:
Hi, I am trying to get an overloaded operator to work inside the class it works on. The situation is something like this: main.cc: #include "object.hh" #include "somefile.hh" object obj, obj2 ;
0
9707
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
9585
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
10586
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
10338
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
10323
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
9161
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
5525
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
5658
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4301
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

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.