473,545 Members | 2,543 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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***@jabberafr ica.co.za
Location: South Africa
Time Zone UTC +2
Jul 22 '05 #1
6 4226
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*********@ho tmail.com> wrote in message
news:10******** *****@corp.supe rnews.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
3452
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 "proves" something) to consider the next time the "Python makes developers more productive" thread starts up again. Background ========== An...
2
1493
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 pass it along for those looking for some quasi-quantitative Python advocacy data. It's also interesting to look at the comparitive trend chart...
9
1915
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. The implementation is really simple, but the key is to understand what the function should be. I'll post Perl and Python codes tomorrow for those...
37
2770
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 behaviour, which is returning a value which is, really, id({}) < id(). He also said that default equality comparison will continue to be identity-based....
0
2492
by: metaperl | last post by:
A Comparison of Python Class Objects and Init Files for Program Configuration ============================================================================= Terrence Brannon bauhaus@metaperl.com http://www.livingcosmos.org/Members/sundevil/python/articles/a-comparison-of-python-class-objects-and-init-files-for-program-configuration/view
50
2590
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 to entry - Most inexpensive web-hosters support PHP, but not Python - PHP has far more pre-writen scripts available - Newer versions of mod_python...
14
13463
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 various ways. One might include a '-' or have leading zeros, or have a single character missing, or a zero that is typed as a letter 'O'. That...
11
1570
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 __eq__(self, other): return self.plumage() == other.plumage() def __ne__(self, other): return self.plumage() != other.plumage()
3
1353
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? Websites that compare the two use very technical descriptions. I'm trying to get a more general introductory idea to the main differences.... something...
0
7396
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...
0
7805
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...
1
7413
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...
0
5968
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...
1
5323
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
4943
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3449
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...
1
1012
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
700
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.