Re: What programming language is the most widely used to make viruses?
- From: Alex <ad3569@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 16 May 2005 21:38:27 GMT
On 15 May 2005 19:33:28 -0700, gremlin_dude@xxxxxxxxxxx wrote:
[snip]
>I find java a useless
>language in terms of its usefulness and creation of worthwhile
>programs, whereas something like C++ or VB is good for windows
>application creation.
Java has its uses. Writing platform-independant code is impossible in
C, and crossplatform source is difficult in any language. I wouldn't
recommend using Java for large projects or mission-/speed-critical
software, but at the very least it's a good prototyping language. The
large standard library encourages the programmer to think in terms of
algorithms rather than counting CPU cycles.
And if you can get a Java implementation of an algorithm to run fast
enough, then you can convert it to C and tune it even more.
I've coded for Windows in C++. It was not an enjoyable experience. It
was even worse before I learned to use the API instead of MFC.
If you're coding with a single platform in mind, the final app should
probably be produced in C++ or VB (or any .NET language if you're
targeting 2K/XP). If you're aiming for many platforms without minimal
rewriting, Java is your friend.
As an example of what Java can do, my CompSci group project this year
was an Internet racing game. Our original spec required it to run on
any system. In Java, it took only a few weeks (maybe 80 man-hours,
since this wasn't our only assignment) to get the framework of the
renderer working. In C++, the boilerplate code alone would've taken a
week if it weren't for my already-extensive library of Windows source,
and we'd've had to write, test and debug the program for every CPU and
OS it had to run on.
I'd say Java is a very useful langauge, for certain things. As with
all languages it has its strengths and its weaknesses. Choosing the
correct tool for the job is an important part of app design.
Alex Davidson
----------------------------------------------------------------------
'You are in the presence of a System Administrator. KNEEL.' --Unknown
.
- Follow-Ups:
- Re: What programming language is the most widely used to make viruses?
- From: Scott Moore
- Re: What programming language is the most widely used to make viruses?
- References:
- What programming language is the most widely used to make viruses?
- From: gremlin_dude
- What programming language is the most widely used to make viruses?
- Prev by Date: Re: Source Control
- Next by Date: Re: Source Control
- Previous by thread: Re: What programming language is the most widely used to make viruses?
- Next by thread: Re: What programming language is the most widely used to make viruses?
- Index(es):
Relevant Pages
|