Free Republic
Browse · Search
General/Chat
Topics · Post Article

Skip to comments.

Software Developers: C++, Java, Python, or C# for my desktop application? (VANITY)
Various ^ | 7/6/2009 | Me

Posted on 07/06/2009 12:40:46 PM PDT by ROTB

I'm writing a desktop application that I'd like to deploy onto Windows, Macintosh, and Linux. I'm trying to pick the language that will give me the most conveniences, without setting timebombs that will go off down the road.

Here's what I think I know so far:

C++ Pros:

1) resulting code runs fastest, provided I am not a bonehead

2) most flexibility in memory management

3) Maximum difficulty in reverse engineering my object code, though there is nothing revolutionary or complex in what I plan to write.

4) Tools are rock-solid.

C++ Cons:

1) memory management is the biggest hassle, though garbage collection, usage of stack, pools, and smart-pointers, can mitigate this. 2) cross-platform programming requires much work for me to manage

Java Pros:

1) Cross platform programming handled

2) Memory management easier relative to C++

3) Lots of Tools, fairly mature

4) many years of advancements over C++

5) "Hot-Spot" compilation can make code run nearly as fast as C++

Java Cons:

1) 10 Megs of runtime need to be packed up with my app, since users might not be technical enough to install a JRE on their own

2) Code is more easily reverse engineered than C++, but how good are the obfuscators?

C# Pros:

1) Through Mono, I can deploy in lots of places

2) I get to use Developer Studio initially, and then use less capable IDE's for porting

3) Handles garbage collection, and does more for the programmer than C++.

4) Lots of libraries.

C# Cons:

1) I might have issues with Mono working exactly like Microsoft's runtime.

2) What did I forget?

C# Questions:

1) Does it compile to machine code, or bytecode? If bytecode, does that compile to machine code?

Python Pros:

1) Clean expressive syntax

2) Cross platform programming handled

3) Memory management easier relative to C++

4) many years of advancements over C++

5) More rapid iteration, since the projects needs not be compiled.

Python Cons:

1) Bytecode can be reverse engineered, but "Shed-Skin" would make the resulting code as fast and as difficult to reverse engineer as C++, BUT "Shed-Skin" is a work in progress, and if the lead-programmer dies, I would have to pick up the slack. I might also need to find bugs myself.


TOPICS: Computers/Internet; Focus Software; Hobbies; Science
KEYWORDS: computers; languages; networking; software
Navigation: use the links below to view more comments.
first previous 1-2021-4041-6061-8081-89 next last
To: ROTB

Stick with Java if you want to run on multiple platforms. Java is fine unless you are doing an amazing number of calculations, transforms, etc. I personally think C# amd VB .NET are much easier to use and have a superior IDE, but only really work on Windows boxes (yeah, I know, there are emulators and whatnot ...)

IMHO, stay away from these goofy ‘designer’ and scripting languages. Java is useful everywhere.


21 posted on 07/06/2009 1:16:29 PM PDT by MatD
[ Post Reply | Private Reply | To 1 | View Replies]

To: dan1123

I get your point now!


22 posted on 07/06/2009 1:21:10 PM PDT by avacado
[ Post Reply | Private Reply | To 20 | View Replies]

To: TChris

COBOL - now there’s a blast from the past. I taught COBOL back in the 70’s...


23 posted on 07/06/2009 1:21:14 PM PDT by OrioleFan (Republicans believe every day is the 4th of July, democrats believe every day is April 15)
[ Post Reply | Private Reply | To 6 | View Replies]

To: HamiltonJay

I’ve been looking at some of the functional languages, like Erlang and Scala and F#, that supposedly will help improve performance on multi-core CPUs. Not sure about Erlang, what I like about Scala, is that it runs on the JVM, and seems to get the best of both worlds (OO and Functional programming).

And of course now with Oracle owning Java, it will be interesting to see what they do with JVM(s), which in the end, matters more than which language is used to generate the byte code.


24 posted on 07/06/2009 1:24:05 PM PDT by dfwgator
[ Post Reply | Private Reply | To 13 | View Replies]

To: ROTB

Take the question to http://www.stackoverflow.com and you’ll get a better range of answers.


25 posted on 07/06/2009 1:25:16 PM PDT by Rev DMV
[ Post Reply | Private Reply | To 1 | View Replies]

To: ROTB

Between Java and c#. Python is too fast and loose with the typing for me. Call me anal retentive, but I require strong typing.

Java has obvious advantages, especially vendor support for multi-platform, which is a big one. But c# was designed to address problems with Java, Delphi and others, thus IMHO comes out a much cleaner language. I also think c# has better data types and has a better generics implementation. The standard framework also has a ton of toys.

But add a problem for c#, your users won’t necessarily have the framework version you need. Many older systems are stuck at 1.1, which, trust me, you don’t want to program in. You need to go at least 2.0, which will entail a framework update for some of your users. So you’re possibly stuck in the same place as Java on that front, although the newer frameworks will install through Windows Update.

Answer to the question on c#, it compiles to a “common intermediate language” which is then compiled to native code by the CLR. It can cache this native version to make later runs faster. Basically, just like Java.


26 posted on 07/06/2009 1:29:13 PM PDT by antiRepublicrat
[ Post Reply | Private Reply | To 1 | View Replies]

To: OrioleFan
COBOL - now there’s a blast from the past. I taught COBOL back in the 70’s...

And I once taught Apple BASIC in the early 80's. :-)

Perhaps I should have recommended RPG + BASIC + COBOL + LISP... Multi-language projects are WAY COOL!

27 posted on 07/06/2009 1:32:45 PM PDT by TChris (There is no freedom without the possibility of failure.)
[ Post Reply | Private Reply | To 23 | View Replies]

To: libh8er

Java can now run almost as fast as C++ ... HAHAHAHAHAHAHAHAHAHAHAHhahahahahahaha... whew! sniff.


28 posted on 07/06/2009 1:37:14 PM PDT by epluribus_2
[ Post Reply | Private Reply | To 5 | View Replies]

To: All
If one wanted to start to learn computer programing what would be the best language to start with to build a foundation for learning how to write programs?
29 posted on 07/06/2009 1:59:17 PM PDT by Captain Beyond (The Hammer of the gods! (Just a cool line from a Led Zep song))
[ Post Reply | Private Reply | To 1 | View Replies]

To: Mr. K
Go to college for 4 year program and you will realize why none of your questions make sense.

Maybe you can tell us what institution is offering that PhD in applied asshole that you obviously graduated with honors from.

30 posted on 07/06/2009 2:02:59 PM PDT by Minn (Here is a realistic picture of the prophet: ----> ([: {()
[ Post Reply | Private Reply | To 3 | View Replies]

To: Captain Beyond
If one wanted to start to learn computer programing what would be the best language to start with to build a foundation for learning how to write programs?

Kind of depends on your eventual goals.

If you want to write small, usefull little things to help automate your work in Windows, I recommend Visual Basic. It's not real fast, but it's built into nearly everything Microsoft makes.

If you want to create web pages, learn HTML, Java, PHP, etc. (VBScript if you stick with Microsoft)

If you want to develop commercial software, you'll really need to invest in learning C++ or at least Delphi, IMO.

That's my $0.02 worth.

31 posted on 07/06/2009 2:10:55 PM PDT by TChris (There is no freedom without the possibility of failure.)
[ Post Reply | Private Reply | To 29 | View Replies]

To: posterchild

Can’t use “software as a service”. It must run locally.


32 posted on 07/06/2009 2:23:35 PM PDT by ROTB (Thou shalt not covet ... ANYTHING!)
[ Post Reply | Private Reply | To 12 | View Replies]

To: epluribus_2
Java can now run almost as fast as C++

When you compile to native code, there's no difference. Even with bytecode and today's fast machines the difference is negligible. The difference may be perceptible in computationally intensive stuff like fluid mechanics, graphics, FEM etc..

33 posted on 07/06/2009 2:41:39 PM PDT by libh8er
[ Post Reply | Private Reply | To 28 | View Replies]

To: Captain Beyond
If one wanted to start to learn computer programing what would be the best language to start with to build a foundation for learning how to write programs?

Python hands down. It is clear and doesn't get in the way, and doesn't saddle you with a bunch of concepts before you write your first line of code. The concepts you learn with Python are applicable to every major programming language you may want to move to in the future.

34 posted on 07/06/2009 2:57:27 PM PDT by dan1123 (Liberals sell it as "speech which is hateful" but it's really "speech I hate".)
[ Post Reply | Private Reply | To 29 | View Replies]

To: ROTB

I apologize to many who have said good things about Java for not pinging them all, first. Etiquette says I should...

If your application requires SPEED, or is an application that will be opened and left open for long periods of time, you MUST NOT use Java. I have found that ALL of the programs on my computer that use Java eat more and more time and memory all the time. Many of those programs I like, but I find I have to eventually purge them from the system, which is often not convenient. Quite a few programs look great when I fire them up and test them, and as long as I don’t put too much of a demand on them, they perform OK. However, when I start using them in a professional type sense, the time penalty explodes in at least a quadratic manner with the data requirements. Often, they bog down so much that I have to kill them using the task manager to get use of my computer back. If you are only going to be using short lists of data and have limited time requirements the program will be used, Java may be fine.

I’m not familiar with C#, and Python may have some of the same limitations as Java, though I’m not as familiar with that.


35 posted on 07/06/2009 3:28:11 PM PDT by AFPhys ((.Praying for President Bush, our troops, their families, and all my American neighbors..))
[ Post Reply | Private Reply | To 1 | View Replies]

To: antiRepublicrat
Between Java and c#. Python is too fast and loose with the typing for me. Call me anal retentive, but I require strong typing.

Python has strong typing:

>>> a = 2
>>> b = "hello"
>>> c = a + b
Traceback (most recent call last):
  File "", line 1, in ?
TypeError: unsupported operand types for +: 'int' and 'str'

36 posted on 07/06/2009 3:53:11 PM PDT by dan1123 (Liberals sell it as "speech which is hateful" but it's really "speech I hate".)
[ Post Reply | Private Reply | To 26 | View Replies]

To: libh8er
When you compile to native code, there's no difference.

Do people actually compile Java to native code? I knew Java compilers existed, but I didn't think anyone actually used them for anything but edge-cases.

37 posted on 07/06/2009 3:55:25 PM PDT by dan1123 (Liberals sell it as "speech which is hateful" but it's really "speech I hate".)
[ Post Reply | Private Reply | To 33 | View Replies]

To: dan1123
Do people actually compile Java to native code?

The feature is there mostly for geeks who get off on numbers and specs. Typically, they wear thick glasses, are underweight, have no spouses or girlfriends.. and live in their moms' basements. Most also voted for Obama.

38 posted on 07/06/2009 4:00:57 PM PDT by libh8er
[ Post Reply | Private Reply | To 37 | View Replies]

To: libh8er
The feature is there mostly for geeks who get off on numbers and specs. Typically, they wear thick glasses, are underweight, have no spouses or girlfriends.. and live in their moms' basements. Most also voted for Obama.

I think I've seen them on slashdot, reddit, and digg.

39 posted on 07/06/2009 4:44:20 PM PDT by dan1123 (Liberals sell it as "speech which is hateful" but it's really "speech I hate".)
[ Post Reply | Private Reply | To 38 | View Replies]

To: ROTB
Personally, I vote for the snake. You can actually get something useful done very quickly.

Read the interesting article Why Python? by Eric Raymond, who was originally kind of antagonistic to the idea of learning it, and chronicles his journey from that antagonism to fandom.

40 posted on 07/06/2009 8:16:39 PM PDT by Still Thinking (If ignorance is bliss, liberals must be ecstatic!)
[ Post Reply | Private Reply | To 1 | View Replies]


Navigation: use the links below to view more comments.
first previous 1-2021-4041-6061-8081-89 next last

Disclaimer: Opinions posted on Free Republic are those of the individual posters and do not necessarily represent the opinion of Free Republic or its management. All materials posted herein are protected by copyright law and the exemption for fair use of copyrighted works.

Free Republic
Browse · Search
General/Chat
Topics · Post Article

FreeRepublic, LLC, PO BOX 9771, FRESNO, CA 93794
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson