473,408 Members | 2,025 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,408 software developers and data experts.

Comparison: C++, C, Python, Java

Q 1: I've not been using C++ much yet, but is it true that C++ is an
unfriendly language to code in *OR*, as I think, is it just a case of C
people, coding in C and calling it C++?

Q 2: What would C++'s market share go to when the market would consist of
Python, Java, C and Ada?

Thanks for consice replies,

Jens.

--
Jabber ID: jt***@jabberafrica.co.za
Location: South Africa
Time Zone UTC +2
Jul 22 '05 #1
6 4214
Jens Thiede wrote:
Q 1: I've not been using C++ much yet, but is it true that C++ is an
unfriendly language to code in *OR*, as I think, is it just a case of C
people, coding in C and calling it C++?
I think this is a loaded question, and highly subjective to boot. I'll
say that personally, I find C++ to be more "unfriendly" than just about
any other language I've ever dealt with. But C++ is the only well
accepted, modern language that's useful in large project. Basically,
expect to use C++ on any real job (job=get paid).

Q 2: What would C++'s market share go to when the market would consist of
Python, Java, C and Ada?
Ada's already out there, market share == squat.

C is popular but legacy. Write kernels and small embedded apps in C,
nothing else.

Python is a scripting language with less market share than bash
scripting. You figure it out.

Java == toy for academia.

Perl is the real scripting language, based on actual use and expected
future use. The only competitor is Visual Basic Script and ASP, and
that's just becuase of MicroSoft's marketing muscle.

Summary: C++, perl and VBS are the real languages right now, I don't see
anything replacing them soon.

Thanks for consice replies,

Jens.


Jul 22 '05 #2

"markspace" <ma*********@hotmail.com> wrote in message
news:10*************@corp.supernews.com...
Jens Thiede wrote:
Q 1: I've not been using C++ much yet, but is it true that C++ is an
unfriendly language to code in *OR*, as I think, is it just a case of C
people, coding in C and calling it C++?
'll say that personally, I find C++ to be more "unfriendly" than just

about any other language I've ever dealt with. It is not only your personal opinion, it is objective because of bunth of
parameters. See below, java is academic standard.

Basically,
expect to use C++ on any real job (job=get paid). You propagate the bad standard saying so. This way we will never be able

Java == toy for academia. That's right. Delphi and Java are good examples of programming langs. When
you start a new application consider one of them. The first one for
performance Windows/(Linux?) apps while development is still rapid comparing
with VC. Java for apps where performance is not paramaunt.
The only competitor is Visual Basic Script and ASP, and
that's just becuase of MicroSoft's marketing muscle. VB is too ugly to call it lang. I'd mention JavaScript, java scripts are
several times smaller and less error-prone about an order. MS does not like
developers (I see it by their VS), I wonder why they support JS at the same
level as VBS.

Summary: C++, perl and VBS are the real languages right now, I don't see
anything replacing them soon.

If you want to be more productive and enjoy your work, consider delphi/java.
Your time and health has its cost.
Jul 22 '05 #3
Jens Thiede wrote:
Q 1: I've not been using C++ much yet, but is it true that C++ is an
unfriendly language to code in *OR*, as I think, is it just a case of C
people, coding in C and calling it C++?
If a C person coding in C (and compiling with C++) suddenly calls C++
unfriendly, is he/she a real C person?
Q 2: What would C++'s market share go to when the market would consist of
Python, Java, C and Ada?


This is a trick question, right? If the market consists of X, Y, and Z,
the share of T is *0*, otherwise the market would consist of X, Y, Z,
_and_ T. So, the answer to your question is _0_.

Victor
Jul 22 '05 #4
markspace wrote:

Perl is the real scripting language, based on actual use and expected
future use. The only competitor is Visual Basic Script and ASP, and
that's just becuase of MicroSoft's marketing muscle.

Summary: C++, perl and VBS are the real languages right now, I don't see
anything replacing them soon.


Really? It seems to me that PHP is pretty popular these days... (and
yes, PHP *used to* be a bunch of Perl scripts, but not anymore...)

--
Mike Smith

Jul 22 '05 #5
Mike Smith wrote:
Really? It seems to me that PHP is pretty popular these days... (and
yes, PHP *used to* be a bunch of Perl scripts, but not anymore...)


Oh, well, I don't actually work in web design. I just know some people
who do and they're all at pretty much perl only shops. PHP might be
taking over Perl in the larger world.

Jul 22 '05 #6
Jens Thiede wrote:
Q 1: I've not been using C++ much yet, but is it true that C++ is an
unfriendly language to code in *OR*, as I think, is it just a case of
C people, coding in C and calling it C++?
I think it's a case of people unfamiliar with the language not knowing how
to use it.
I found it tricky to learn, but now that I know it well I'm much more
productive in it than, say, C# or VB.

Esp. on game development sites they treat it like "C that allows member
functions in structs", and use pointers for /everything/, such as:

struct s{};
int main()
{
s* foo = new s;
// use s...
delete foo;
return 0;
}

Not to mention ignoring the standard library and coding your own seems to be
popular.

Q 2: What would C++'s market share go to when the market would
consist of Python, Java, C and Ada?
Well if only Python, Java, C, and Ada were in the market, I can't see how
C++ would have any...
Perhaps you mean something else?

- Pete

Thanks for consice replies,

Jens.


Jul 22 '05 #7

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

Similar topics

2
by: Dave Brueck | last post by:
Below is some information I collected from a *small* project in which I wrote a Python version of a Java application. I share this info only as a data point (rather than trying to say this data...
2
by: Paul McGuire | last post by:
I just tripped over this site (http://www.tiobe.com/tpci.htm), and google shows that there has only been a brief mention of it on c.l.py in the Aug 12 Dr. Dobb's Python-URL post, so I thought I'd...
9
by: Xah Lee | last post by:
here's a interesting real-world algoritm to have fun with. attached below is the Perl documentation that i wrote for a function called "reduce", which is really the heart of a larger software. ...
37
by: spam.noam | last post by:
Hello, Guido has decided, in python-dev, that in Py3K the id-based order comparisons will be dropped. This means that, for example, "{} < " will raise a TypeError instead of the current...
0
by: metaperl | last post by:
A Comparison of Python Class Objects and Init Files for Program Configuration ============================================================================= Terrence Brannon bauhaus@metaperl.com...
50
by: walterbyrd | last post by:
I don't know if this is a fair comparison or not. Any comments appreciated. - Python is more readable, and more general purpose - PHP has awful backward compatibility - PHP has a lower barrier...
14
by: Steve Bergman | last post by:
I'm looking for a module to do fuzzy comparison of strings. I have 2 item master files which are supposed to be identical, but they have thousands of records where the item numbers don't match in...
11
by: Steven D'Aprano | last post by:
I'm writing a class that implements rich comparisons, and I find myself writing a lot of very similar code. If the calculation is short and simple, I do something like this: class Parrot: def...
3
by: genericaudioperson | last post by:
Hello, I was trying to see what the main differences are between Java and C+ +. If you were going to learn to program your first language other than Basic, which one would you choose? ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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:
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
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...
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...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.