473,394 Members | 1,701 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,394 software developers and data experts.

Will VC++ face out ?

Hi I have many questions

Does VS Orcas still has VC++ , do you think that VC++ will face out by
dotnet or Java ?

Can C# support standard or Win32 C/C++ class lib dll and COM ?

Can dotnet and Java do device IO control with drivers ?

Can dotnet and Java avoid disassembly for commercial software development ,
and how about their low performance ?

Thank for your teaching~
Jun 13 '07 #1
9 1458
>Does VS Orcas still has VC++

Yes
>do you think that VC++ will face out by
dotnet or Java ?
No more than it has already.
>Can C# support standard or Win32 C/C++ class lib dll and COM ?
I'm not sure what you're asking there.
>Can dotnet and Java do device IO control with drivers ?
Is that, can you write drivers with .Net or Java? If so, I'm pretty
sure the answer is no.
>Can dotnet and Java avoid disassembly for commercial software development ,
and how about their low performance ?
You can get obfuscators for them.

As for performance, it depends on precisely what you're doing. For
some situations you may not notice any difference, but for others it
may be highly significant.

Dave
Jun 13 '07 #2
Does VS Orcas still has VC++
Yes
And it will have for some time to come. there is a renewed push for native
code within Microsoft, and all major products incl windows, SQL server etc
are still built using VC++
>>do you think that VC++ will face out by
dotnet or Java ?
No more than it has already.
Probably a bit more. Anything that can efficiently run on the .NET framework
will be developed in C# or (god forbid ;-)) VB.NET.
I like C++ as much as the next C++ MVP, but I use C# whenever it is
feasible. Use the right tool for the job.
>>Can C# support standard or Win32 C/C++ class lib dll and COM ?
I'm not sure what you're asking there.
C# can use DLLs that export C style functions. static libraries or C++ class
libraries (whether dynamic or static) cannot be used.
COM interop is usually not a big deal, but you will have a performance
impact and it is harder to marshal non trivial datatypes.
>>Can dotnet and Java do device IO control with drivers ?
Is that, can you write drivers with .Net or Java? If so, I'm pretty
sure the answer is no.
Indeed you can't. The UMDF (user mode driver foundation) allows you to write
bus drivers in user mode (for example USB or firewire). It is not impossible
that one day, these will be possible to write in C#.
But anything kernel related will be C or C++ for the forseeable future.

--
Kind regards,
Bruno van Dooren MVP - VC++
http://msmvps.com/blogs/vanDooren
br**********************@hotmail.com
Jun 13 '07 #3
On Jun 13, 8:21 am, Kid <K...@discussions.microsoft.comwrote:
Hi I have many questions

Does VS Orcas still has VC++
<snip>

Before asking those kind of questions, just ask yourself :

With what tool do you think that

1) Windows
2) Office
3) The .NET framework

are compiled within Microsoft?

Then you'll realize that they CAN'T abandon VC in any forseeable
future...

Arnaud
MVP - VC

Jun 13 '07 #4

"Kid" <Ki*@discussions.microsoft.comwrote in message
news:A0**********************************@microsof t.com...
Hi I have many questions

Does VS Orcas still has VC++ , do you think that VC++ will face out by
dotnet or Java ?

Can C# support standard or Win32 C/C++ class lib dll and COM ?

Can dotnet and Java do device IO control with drivers ?

Can dotnet and Java avoid disassembly for commercial software development
,
and how about their low performance ?

Thank for your teaching~
Adding to what others have told you...
Check out recent issues of MSDN Magazine online to see significant
enhancements to C++ class libraries such as MFC, which will arrive with
Visual Studio 2008 (new name for Orcas).

http://msdn.microsoft.com/msdnmag/

Jun 13 '07 #5
See inline:
"Bruno van Dooren" <br**********************@hotmail.comwrote in message
news:eN**************@TK2MSFTNGP05.phx.gbl...
>Does VS Orcas still has VC++
Yes
And it will have for some time to come. there is a renewed push for native
code within Microsoft, and all major products incl windows, SQL server etc
are still built using VC++
<SNIP>

How does this work? I've heard for years how they're going to be eating
their own dogfood.

-Michael Viking
Jun 13 '07 #6
Hi Michael!
>>>Does VS Orcas still has VC++
Yes
And it will have for some time to come. there is a renewed push for native
code within Microsoft, and all major products incl windows, SQL server etc
are still built using VC++
<SNIP>

How does this work? I've heard for years how they're going to be eating
their own dogfood.
I thought VC++ is a product from MS, isn't it?

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Jun 13 '07 #7

"Michael Viking" <Th*******@sweden.sewrote in message
news:el**************@TK2MSFTNGP02.phx.gbl...
See inline:
"Bruno van Dooren" <br**********************@hotmail.comwrote in message
news:eN**************@TK2MSFTNGP05.phx.gbl...
>Does VS Orcas still has VC++
Yes
And it will have for some time to come. there is a renewed push for
native
code within Microsoft, and all major products incl windows, SQL server
etc
are still built using VC++
<SNIP>

How does this work? I've heard for years how they're going to be eating
their own dogfood.
There are plenty of major "Windows components" built on .NET, especially in
Vista, but those are just features delivered with the install. The OS
itself is pure native.

So, they do eat their .NET, and their C++ as well.

No fear of C++ being phased out in the foreseeable future.
Jun 13 '07 #8
"Michael Viking" <Th*******@sweden.sewrote in message
news:el**************@TK2MSFTNGP02.phx.gbl...
How does this work? I've heard for years how they're
going to be eating their own dogfood.
What compiler do you think they used to compile Office, say?

<speculation>
What fate do you think might befall one of their C++ developers who might
choose a compiler from another company?
</speculation>

Regards,
Will
Jun 14 '07 #9

"William DePalo [MVP VC++]" <wi***********@mvps.orgwrote in message
news:eg**************@TK2MSFTNGP04.phx.gbl...
"Michael Viking" <Th*******@sweden.sewrote in message
news:el**************@TK2MSFTNGP02.phx.gbl...
>How does this work? I've heard for years how they're
going to be eating their own dogfood.

What compiler do you think they used to compile Office, say?

<speculation>
What fate do you think might befall one of their C++ developers who might
choose a compiler from another company?
</speculation>
I suspect the Intel compiler of being acceptable. Can't think of any others
they might tolerate.
>
Regards,
Will


Jun 14 '07 #10

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

Similar topics

6
by: Ed | last post by:
I've been away from C++ programming for awhile. Maybe this is a simple problem. I get the error message "illegal call of non-static member function" when I insert DWORD hotkey;...
0
by: Sreejith P S | last post by:
Hi I am doing migration of MFC code from CV++.6 to VC++.NET . I found a difference between handing MFC “ON_COMMAND” message function prototype In VC++ .6 the function prototype is BOOL...
2
by: kalyan. | last post by:
hello, i am working on WMA SDK. i got the SDK from Microsoft under source development agreement . The SDK has the project of WMA 9.1 built in VC 7.1 As i dont have VC 7 i found a tool to convert...
4
by: batista | last post by:
Hello to all, I want to know that wat's the future of vc++.net? I mean is it going to remain there or not, and if does then wud there be big changes to it or they'll stick with the current one?...
48
by: meyer | last post by:
Hi everyone, which compiler will Python 2.5 on Windows (Intel) be built with? I notice that Python 2.4 apparently has been built with the VS2003 toolkit compiler, and I read a post from Scott...
0
by: kunjee | last post by:
Hi All, I have built a win32 coonsole application. It works fine with _MBCS/MBCS settings.. On changing it to unicode, i face the following problem. If it is Unicode, then i use _setmode to...
4
by: cazconv2007 | last post by:
Hi i have a homework on drawing a smiley face then pressing a button to draw a sad face i have some code but nothing works i keep getting an error on my action performed method. can you please look...
12
by: ojsimon | last post by:
Hi this javascript is generated by my code document.writeln('<head><style>a{color: white; font-size:10px}a:visited{color: white; font-size: 10px;}</style></head><table><tr><tr...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...
0
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...
0
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,...
0
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...
0
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...

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.