Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / Managed C++ / July 2005

Tip: Looking for answers? Try searching our database.

typecasting ???

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
cmrchs@yahoo.com - 05 Jul 2005 17:38 GMT
Hi,

what is the way to check whether a value is truly a boolean :

I try the following:

 Object ^obj = m_XPathNav->Evaluate(<some xpath expression>);

 if (nullptr != static_cast<double^>(obj) )
    sMessage = "double";
 else if (nullptr != static_cast<bool^>(obj) )
    sMessage = "boolean";

Even with boolean values does the first typecast always return true so I always get "double"

In C# there exist the is-operator that clearly makes a distinction.
Is there a C++ - version of the is-operator ?

thanks
Chris
Carl Daniel [VC++ MVP] - 05 Jul 2005 17:57 GMT
Chris C wrote:
> Hi,
>
[quoted text clipped - 14 lines]
> In C# there exist the is-operator that clearly makes a distinction.
> Is there a C++ - version of the is-operator ?

Here's a small sample:

#using <mscorlib.dll>

using namespace System;

void test(String^ name, Object^ obj)
{
Console::Write("{0}: ",name);
if (obj->GetType() == Boolean::typeid)
 Console::WriteLine("Yes");
else
 Console::WriteLine("No");
}

int main()
{
test("double",1.0);
test("bool",true);
test("int",5);
}

-cd
cmrchs@yahoo.com - 05 Jul 2005 18:01 GMT
thanks, I'll try that !

using dynamic_cast<> works as well of course (= standard C++)

greetz
Chris

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.