C++ is dying a slow death

Please support our C++ advertiser: Intel Parallel Studio Home
Closed Thread

Join Date: Feb 2004
Posts: 138
Reputation: A Monkeys Uncle is an unknown quantity at this point 
Solved Threads: 0
A Monkeys Uncle's Avatar
A Monkeys Uncle A Monkeys Uncle is offline Offline
Junior Poster

Re: C++ is dying a slow death

 
0
  #21
Aug 24th, 2004
Hey, I'll bet my dad can beat your dad up...

Anyways, I'm glad I read this because I was undecided as to which subject to take a course on between the two respective subjects discussed in this thread, and I've decided to go with C++ first.
Gamer Tag: Xaminor
Quick reply to this message  
Join Date: Mar 2004
Posts: 18
Reputation: hivework is an unknown quantity at this point 
Solved Threads: 0
hivework hivework is offline Offline
Newbie Poster

Re: C++ is dying a slow death

 
0
  #22
Aug 26th, 2004
I think C++ has been always kind of dead. The only major software i can think of that was written in C++ is Mozilla and Qt (Even though major implementaion of these software was rendered in C). I don't know why people like C++ so much, when you can achieve object oriented design through C. GTK and Gnome are perfect examples of that. Plus a lof of people still prefer writing code in pure Win32 API rather than messy MFC.

True object orientation cannot be achieved without a true Object Oriented Operating System.
Quick reply to this message  
Join Date: Feb 2004
Posts: 138
Reputation: A Monkeys Uncle is an unknown quantity at this point 
Solved Threads: 0
A Monkeys Uncle's Avatar
A Monkeys Uncle A Monkeys Uncle is offline Offline
Junior Poster

Re: C++ is dying a slow death

 
0
  #23
Aug 27th, 2004
What about the development of videogames?
Gamer Tag: Xaminor
Quick reply to this message  
Join Date: Jul 2004
Posts: 15
Reputation: shalin is an unknown quantity at this point 
Solved Threads: 0
shalin's Avatar
shalin shalin is offline Offline
Newbie Poster

Re: C++ is dying a slow death

 
0
  #24
Aug 27th, 2004
C/C++ won't die.
Quick reply to this message  
Join Date: Mar 2004
Posts: 18
Reputation: hivework is an unknown quantity at this point 
Solved Threads: 0
hivework hivework is offline Offline
Newbie Poster

Re: C++ is dying a slow death

 
0
  #25
Aug 27th, 2004
Originally Posted by A Monkeys Uncle
What about the development of videogames?
You can develop video games in any language out there. Heck, you can write it in JavaScript if you'll write a compiler for it. The key developing method in modern video games is accessing Video Hardware through series of interrupt calls via pure assembly. As long as you do that, you can lay any language on top of your hardware code.

Any modern operating system does not know what Class or an Object is.
Every code that is loaded in memory is represented as such: Text segment (that's what the C functions are), Stack (local variables in C), and the Heap (dynamic memory - whatever is allocated via malloc() and such). This program set-up can't get any more perfect for C (or any other procedual language - not C++, Java or C#).
In addition all core OS service libraries (Kernel32.dll or libc.so in Linux) were made to be used with C primarely. OpenGL API is also made primarily to be used with C. Qt, KDE, (and whatever the hell else written in C++) all lay on top of the X Windowing system which is a C language API. Even .NET stays on top of the Win32 API.

I can't wait till someone will write an OS Kernel in C++. (Please don't mention anything about the "Choices" operating system")
Quick reply to this message  
Join Date: Sep 2004
Posts: 1
Reputation: Daniel_Lohmann is an unknown quantity at this point 
Solved Threads: 0
Daniel_Lohmann Daniel_Lohmann is offline Offline
Newbie Poster

How important is C++ (was: C++ is dying a slow death)

 
0
  #26
Sep 6th, 2004
Originally Posted by freesoft_2000
Hi everyone,

I just came home from a software conference in nagoya, Japan
where they had any kind of software you can think of on this planet.
There was one talk i went for and i think its quite interesting to have it discussed fully here. Alot of the companies there all said the c language is now nothing more than a relic and dying a slow death and that the new Java 2 has already taken over c programming.
...
I am looking for any kind of numbers that proof this right or wrong. Does anybody know about a (citable) study that shows numbers like,

- the estimated existing code base (lines of code)
- the estimated number of developers
- the estimated number of projects still beeing developed in C/C++
- ... anything else that can be used to compare the importance of C/C++ and Java in the "real world".


Anybody an idea where I can look for such a study?

Regards

Daniel Lohmann
Quick reply to this message  
Join Date: Mar 2004
Posts: 219
Reputation: BountyX is an unknown quantity at this point 
Solved Threads: 8
BountyX's Avatar
BountyX BountyX is offline Offline
Code Guru

Re: C++ is dying a slow death

 
0
  #27
Sep 6th, 2004
I'm a free lancer who knows many different languages, and to be honest I find languags like Java to be VERY overated. Making GUI's in Java is a headache and well, if you want the whole portability thing with your program, QT has a great API thats portable on almost any system, and processing time is not sacraficed.

As a free lancer, my job is to get things done fast, good-looking, and efficiently. The language is your tool, sometimes you need a screw driver, some times you need a hammer. I devloped many projects for Mac, Linux, and windows, using common API frameworks such as QT. After Learning Java, I have yet to really use it on a project.

One thing is for sure though, it dosn't matter hwo you get the job done, as long as it gets done on time!
A Hacker's Mind:
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes..." - J.D.Salinger
Quick reply to this message  
Join Date: Jul 2004
Posts: 8
Reputation: Mr.PinkBunny is an unknown quantity at this point 
Solved Threads: 0
Mr.PinkBunny's Avatar
Mr.PinkBunny Mr.PinkBunny is offline Offline
Newbie Poster

Re: C++ is dying a slow death

 
-1
  #28
Sep 6th, 2004
Banana? Banana? Banana? Banana? Banana?
:evil::cry::evil::cry::evil::cry::evil::cry::evil:
Quick reply to this message  
Join Date: Mar 2004
Posts: 219
Reputation: BountyX is an unknown quantity at this point 
Solved Threads: 8
BountyX's Avatar
BountyX BountyX is offline Offline
Code Guru

Re: C++ is dying a slow death

 
-1
  #29
Sep 7th, 2004
Originally Posted by Mr.PinkBunny
Banana? Banana? Banana? Banana? Banana?
:mrgreen: :mrgreen: :mrgreen:
A Hacker's Mind:
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes..." - J.D.Salinger
Quick reply to this message  
Join Date: Apr 2004
Posts: 759
Reputation: Killer_Typo will become famous soon enough Killer_Typo will become famous soon enough 
Solved Threads: 35
Killer_Typo's Avatar
Killer_Typo Killer_Typo is offline Offline
Master Poster

Re: C++ is dying a slow death

 
0
  #30
Sep 7th, 2004
Originally Posted by hivework
I think C++ has been always kind of dead. The only major software i can think of that was written in C++ is Mozilla and Qt (Even though major implementaion of these software was rendered in C). I don't know why people like C++ so much, when you can achieve object oriented design through C. GTK and Gnome are perfect examples of that. Plus a lof of people still prefer writing code in pure Win32 API rather than messy MFC.

True object orientation cannot be achieved without a true Object Oriented Operating System.
your joking right?? lol C++ already kind of dead. ill laugh really hard at that. then remind you that most everything is writtin in C++, not just one webbrowser.
Dont forget to spread the reputation to those that deserve!
Quick reply to this message  
Closed Thread

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



Tag cloud for C++
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC