944,085 Members | Top Members by Rank

Ad:
  • Java Discussion Thread
  • Unsolved
  • Views: 5671
  • Java RSS
You are currently viewing page 1 of this multi-page discussion thread
Feb 22nd, 2005
0

Quick Question: Is J# the same thing as Java?

Expand Post »
Greetings,

Just a really quick and somewhat simple question with a (hopefully...) simple answer:

Is J#.NET the same thing as Java?

If not, what are the differences between J# and Java.

Thanks in advance,

DeFrog777
Reputation Points: 11
Solved Threads: 0
Newbie Poster
DeFrog777 is offline Offline
20 posts
since Dec 2004
Feb 22nd, 2005
0

Re: Quick Question: Is J# the same thing as Java?

There is an explantion of it here
Reputation Points: 16
Solved Threads: 9
Master Poster
OurNation is offline Offline
780 posts
since Aug 2004
Feb 27th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

basically, they're different. Java is made by SUN, and J# is made by SUN's rival company Microsoft. Java is better
Reputation Points: 12
Solved Threads: 2
Posting Whiz
Ghost is offline Offline
352 posts
since Aug 2004
Mar 6th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

Thanks for the clairification! I greatly appreciate it! And I agree with C++ that Sun's Java is easier and more user-friendly than Microsoft's J#. And with what I've been reading, Java is gaining popularity throughout the developer community, even going so far as to replace C++ on the AP Programming exam. Is Java the proverbial wave of the future in development? Only time will tell, and that is a topic for another time(and thread )

Thanks again,

DeFrog777
Reputation Points: 11
Solved Threads: 0
Newbie Poster
DeFrog777 is offline Offline
20 posts
since Dec 2004
Mar 6th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

Both java and anything in the .NET framework is very hot right now. I personally think they are the wave of the future, and any employer will be looking for people qualified in these areas.
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004
Mar 6th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

Hi everyone,

Quote originally posted by DeFrog777 ...
Is Java the proverbial wave of the future in development? Only time will tell, and that is a topic for another time
Here is a link

http://www.daniweb.com/techtalkforums/thread8386.html

The thread is now closed as instead of discussing the topic at hand certain members started launching personal attacks against one another.

It's quite entertaining to read.

Maybe the flame can still be rekindled

If you ask me .net is a ripoff of java. I used to remember people from microsoft used to say that java was useless and that C++ was better as you did not need such a large sdk or runtime. Guess who has the largest sdk and runtime now??

ps: i do not hate microsoft

Richard West
Reputation Points: 25
Solved Threads: 10
Practically a Master Poster
freesoft_2000 is offline Offline
623 posts
since Jun 2004
Mar 6th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

.NET is not a ripoff of Java just as Java is not a ripoff of C++.
.NET is a logical progression from the existing COM+ technology which itself is a development of older ActiveX technology the predecessors of which existed over 10 years ago.

Java didn't invent the concept of a virtual machine, nor did it invent garbage collection. Both had been in existence in other products for a long time.
What Java did was popularise these technologies.

Java isn't the wave of the future, it's the wave of today.
What the future will bring is unknown, most likely it will be Cobol though.
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
Mar 25th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

Quote originally posted by jwenting ...
.NET is not a ripoff of Java just as Java is not a ripoff of C++.
.NET is a logical progression from the existing COM+ technology which itself is a development of older ActiveX technology the predecessors of which existed over 10 years ago.

Java didn't invent the concept of a virtual machine, nor did it invent garbage collection. Both had been in existence in other products for a long time.
What Java did was popularise these technologies.

Java isn't the wave of the future, it's the wave of today.
What the future will bring is unknown, most likely it will be Cobol though.
Hmm, very interesting. Indeed .NET and Java are very similar in many respects, but they do have several differences.

For instance even though it is a very powerful development tool. Visual Studio .NET is VERY expensive. Truth be told that you can find comperable if not better tools either free or at a fraction of the cost of Visual Studio .NET but Visual Studio is definately the standard.

Now lets compare Java to .NET. Java is a very powerful development tool at little to no cost to the end user and is catching on quite quickly. I have even heard that Java has replaced C++ on the AP Programming test. My personal opinion is that neither one will replace the other, but instead will achieve a "peaceful" coexistance.

Now the "wave of the future" is Cobol? I am probably not the one to say, but I don't think so. Of course my opinion is biased because I have never written a single line of code in Cobol, but if you can prove me wrong, I would love to hear reasons why.

Just putting in my two cents...
DeFrog777
Reputation Points: 11
Solved Threads: 0
Newbie Poster
DeFrog777 is offline Offline
20 posts
since Dec 2004
Mar 27th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

That last was a jab at all the people who always say "Java is dead", "C++ is dead", "<name your language> is dead"

Cobol has been around for about 40 years now, and is still in largescale use today. I'd not be surprised at all if Cobol is still around when both Java and .NET are dead and forgotten.
Whereas both Java and .NET are used to create flashy internet and desktop applications (which typically have a short shelf life, they get replaced within a few years at most usually), Cobol runs the mainframes and supercomputers. Those applications are built to last, and run (with maintenance and upgrades for new and changed functionality) for decades almost uninterrupted.
They run so well in fact that there's no reason to shoulder the extreme cost of replacing them with something "more modern" (usually meaning Java or C++).

I was involved in one such massive Cobol project. The software had originally been created by another company some decade before we purchased it in 1992 (that was before I came on board). Last I heard (2003) it was still in active use and still being developed. That's 20 years for a single application, running on the same hardware all the time (ok, with upgrades to the hardware, adding harddisks and CPUs of course).

We were asked at one point by the customer to calculate the cost (in time and money) to replace the application with one created in C++.
We estimated it would take about 2 years and 60 million dollars to write and test the replacement application to fully replace the existing one. During that period maintenance and development (to enable new products and services for the customer that they were constantly adding) would require another 30 million.
They decided to increase our project budget from 15 million a year to 20 million instead so we would have money to train people to program Cobol ourselves (as they are getting hard to find on the open market).
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
Mar 27th, 2005
0

Re: Quick Question: Is J# the same thing as Java?

Quote originally posted by DeFrog777 ...
I have even heard that Java has replaced C++ on the AP Programming test.
It has, but that doesn't mean java is replacing C++. I personally think java is the best language around to teach OO concepts, and is very user friendly. I guess I could base that on fact since all Uni's and HS' are teaching it jetzt, and there has to be a reason for that.
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Java Forum Timeline: javac help!
Next Thread in Java Forum Timeline: Please help me!!!





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC