Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Java (http://www.velocityreviews.com/forums/f30-java.html)
-   -   is Java right for me? (http://www.velocityreviews.com/forums/t499919-is-java-right-for-me.html)

aunst8_2000@yahoo.com 04-24-2007 05:51 AM

is Java right for me?
 
Sorry for this stupid question... i don't know Java but am a fast
learner.
I want to write a simple app such as a Task Manager in Windows... much
like Outlook's Task Manager but with different features. Is Java the
right language to learn to do this? I do not want to make the app
dependant on a web browser but would like to make is a stand-alone
app.

Thanks
-Ed


Andrew Thompson 04-24-2007 01:52 PM

Re: is Java right for me?
 
aunst8_2000@yahoo.com wrote:
...
>I want to write a simple app such as a Task Manager in Windows... much
>like Outlook's Task Manager but with different features. Is Java the
>right language to learn to do this?


I doubt it. Java is geared to cross-platform applications,
and usually relies on OS specific (C++/.NET) hooks to
do this sort of stuff. Might as well just code it in C++
or .NET to start with.

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JavaKB.com
http://www.javakb.com/Uwe/Forums.asp...neral/200704/1


Daniel Dyer 04-24-2007 02:29 PM

Re: is Java right for me?
 
On Tue, 24 Apr 2007 14:52:42 +0100, Andrew Thompson <u32984@uwe> wrote:

> aunst8_2000@yahoo.com wrote:
> ..
>> I want to write a simple app such as a Task Manager in Windows... much
>> like Outlook's Task Manager but with different features. Is Java the
>> right language to learn to do this?

>
> I doubt it. Java is geared to cross-platform applications,
> and usually relies on OS specific (C++/.NET) hooks to
> do this sort of stuff. Might as well just code it in C++
> or .NET to start with.


I think the OP means more of a "TO DO" list kind of application rather
than a process viewer (at least that's what I'm assuming from the mention
of Outlook).

To the OP, Java is a good choice if you want to run on Linux and Mac with
very little extra effort. If you only want to run on Windows then there's
not any real advantage in using Java over the alternatives.

Dan.

--
Daniel Dyer
http://www.uncommons.org

Jochen Schulz 04-24-2007 03:00 PM

Re: is Java right for me?
 
* Andrew Thompson:
> aunst8_2000@yahoo.com wrote:
> ..
>> I want to write a simple app such as a Task Manager in Windows... much
>> like Outlook's Task Manager but with different features. Is Java the
>> right language to learn to do this?

>
> I doubt it. Java is geared to cross-platform applications,
> and usually relies on OS specific (C++/.NET) hooks to
> do this sort of stuff.


I /think/ you misinterpreted the OP's usage of "task manager". Think
"todo list".

Of course this is possible with Java, but I am not sure whether it is
the right language for a beginner. Scripting languages like Python or
Ruby might be a little bit easier to learn and provide results more
quickly which is important to keep up motivation.

If you are planning to become a professional programmer, Java is
probably a good language to learn since demand is quite high. But for
many people writing in Java is not as much fun as writing in other
languages. But that is a highly subjective matter so in my opinion you
should just try something and see how far you get. Learning different
programming languages is a good thing anyway, even if you end up as a
Java monkey. :)

J.
--
If I could travel in time I would show my minidisc to the Romans and
become Caesar until the batteries ran out.
[Agree] [Disagree]
<http://www.slowlydownward.com/NODATA/data_enter2.html>

jon 04-24-2007 03:04 PM

Re: is Java right for me?
 
On Apr 23, 11:51 pm, aunst8_2...@yahoo.com wrote:
> Sorry for this stupid question... i don't know Java but am a fast
> learner.
> I want to write a simple app such as a Task Manager in Windows... much
> like Outlook's Task Manager but with different features.


"Simple app" such as Task Manager? <sigh>. You sound like my
supervisor. ("Oh, and we need it by this afternoon, about 1:00 or
1:30, for an important demonstration. It will by your fault if we
can't have this up and running.")

> Is Java the
> right language to learn to do this? I do not want to make the app
> dependant on a web browser but would like to make is a stand-alone
> app.
>
> Thanks
> -Ed


No, you'll want a language that can more readily access the Windows
APIs. I'd use MS Visual C, but nowadays most MSians would suggest
C#. You'll want a few days to get up to speed with the language....




Patricia Shanahan 04-24-2007 03:14 PM

Re: is Java right for me?
 
aunst8_2000@yahoo.com wrote:
> Sorry for this stupid question... i don't know Java but am a fast
> learner.
> I want to write a simple app such as a Task Manager in Windows... much
> like Outlook's Task Manager but with different features. Is Java the
> right language to learn to do this? I do not want to make the app
> dependant on a web browser but would like to make is a stand-alone
> app.


I think you are getting mixed answers because of an ambiguity in your
question.

The Windows "Task Manager" is a specific program that displays system
information, such as the process list.

On the other hand, the term "task manager" can just refer to a to-do and
calendar program.

They are very different things. Which do you mean?

Patricia

blueice 04-24-2007 05:04 PM

Re: is Java right for me?
 
I think Visual C++ would be a lot more appropriate to write Windows
tools. You don't necessarily need Visual Studio to do anything like
that (meaning, you can do it all in Notepad) but it would be of great
help. You're going to be accessing lots of system data and I'm sure
visual studio has plenty tools/APIs to make this easy for you. plus,
it's native to the Windows environment, Java isn't.

On Apr 23, 10:51 pm, aunst8_2...@yahoo.com wrote:
> Sorry for this stupid question... i don't know Java but am a fast
> learner.
> I want to write a simple app such as a Task Manager in Windows... much
> like Outlook's Task Manager but with different features. Is Java the
> right language to learn to do this? I do not want to make the app
> dependant on a web browser but would like to make is a stand-alone
> app.
>
> Thanks
> -Ed




zero 04-24-2007 06:44 PM

Re: is Java right for me?
 
"Daniel Dyer" <"You don't need it"> wrote in
news:op.trak69aj8kxvgr@cgl0656.chaucer.co.uk:

> On Tue, 24 Apr 2007 14:52:42 +0100, Andrew Thompson <u32984@uwe>
> wrote:
>
> To the OP, Java is a good choice if you want to run on Linux and Mac
> with very little extra effort. If you only want to run on Windows
> then there's not any real advantage in using Java over the
> alternatives.
>
> Dan.
>


What about ease of use? C++ was suggested by a lot of posters, but it is a
lot harder to learn than Java.
Then again if the dificulty level is a factor, there are other languages
easier than Java.

Zero

Scooby 04-24-2007 07:40 PM

Re: is Java right for me?
 
"zero" <zero@this.hi> wrote in message
news:Xns991CD2FBF3686z02e10r19o79@195.130.132.70.. .
> "Daniel Dyer" <"You don't need it"> wrote in
> news:op.trak69aj8kxvgr@cgl0656.chaucer.co.uk:
>
>> On Tue, 24 Apr 2007 14:52:42 +0100, Andrew Thompson <u32984@uwe>
>> wrote:
>>
>> To the OP, Java is a good choice if you want to run on Linux and Mac
>> with very little extra effort. If you only want to run on Windows
>> then there's not any real advantage in using Java over the
>> alternatives.
>>
>> Dan.
>>

>
> What about ease of use? C++ was suggested by a lot of posters, but it is
> a
> lot harder to learn than Java.
> Then again if the dificulty level is a factor, there are other languages
> easier than Java.
>
> Zero


Well, I personally don't think C++ would be the right option for the OP.
But, C# is very much like Java, from a syntax perspective and is probably
the best solution in this case.



Daniel Dyer 04-24-2007 10:35 PM

Re: is Java right for me?
 
On Tue, 24 Apr 2007 19:44:20 +0100, zero <zero@this.hi> wrote:

> "Daniel Dyer" <"You don't need it"> wrote in
> news:op.trak69aj8kxvgr@cgl0656.chaucer.co.uk:
>
>> On Tue, 24 Apr 2007 14:52:42 +0100, Andrew Thompson <u32984@uwe>
>> wrote:
>>
>> To the OP, Java is a good choice if you want to run on Linux and Mac
>> with very little extra effort. If you only want to run on Windows
>> then there's not any real advantage in using Java over the
>> alternatives.
>>
>> Dan.
>>

>
> What about ease of use? C++ was suggested by a lot of posters, but it
> is a
> lot harder to learn than Java.
> Then again if the dificulty level is a factor, there are other languages
> easier than Java.


Yes, you're right. I was thinking primarily of the main .Net languages
(C# and VB.net).

Dan.

--
Daniel Dyer
https://watchmaker.dev.java.net - Evolutionary Algorithm Framework for Java


All times are GMT. The time now is 10:58 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57