Go Back   PCMech Forums > Help & Discussion > Web Design / Development

Need Some Help? Type Your Keywords Here:

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
Old 08-07-2002, 05:21 PM   #1
Banned
 
Join Date: Jul 2002
Posts: 257
C# Eaiser Than C++?

I read somewhere that C# is much easier than C++ is this true?
Justin26k is offline   Reply With Quote
Old 08-07-2002, 05:47 PM   #2
Professional gadfly
 
doctorgonzo's Avatar
 
Join Date: Jan 2002
Location: Minneapolis, MN
Posts: 6,364
Send a message via MSN to doctorgonzo
Did you hear why it was easier? C# has a garbage collector, so that should make it easier than C++. In addition, it doesn't let you write all over your memory by going out of bounds in an array, which is a common problem in C++ if you don't explicitly check. But these are just things I know about C#; I haven't used it myself.
doctorgonzo is offline   Reply With Quote
Old 08-07-2002, 05:51 PM   #3
Banned
 
Join Date: Jul 2002
Posts: 257
OK, Anymore opinions?
Justin26k is offline   Reply With Quote
Old 08-09-2002, 04:51 AM   #4
SQL nutcase
 
mosquito's Avatar
 
Join Date: Sep 2000
Location: Belgium
Posts: 1,136
Send a message via AIM to mosquito
It is a lot easier then C++ due to:
- Garbage collection
- No explicit memory allocation (and deallocation)
- No pointers

You can actually use all the arguments that make java easier then C++ on C# too. C# is closer related to java then C++ actually.
mosquito is offline   Reply With Quote
Old 08-09-2002, 05:05 AM   #5
Banned
 
Join Date: Jul 2002
Posts: 257
So C++ is a bad language ? im looking for a easy language yes I know programming languages is kinda like icecream to each there own but whats usallt easy I just wanna get the basics of programming then I will move up
Justin26k is offline   Reply With Quote
Old 08-09-2002, 05:16 PM   #6
aym
Registered User
 
aym's Avatar
 
Join Date: Nov 2001
Posts: 1,965
C++ isn't a bad language, but it's more difficult to begin with than Java or C#.
I recommend you to begin with Java, then after you master the basics, moving to C++, C# or any other object oriented language will be easier.
aym is offline   Reply With Quote
Old 08-09-2002, 09:05 PM   #7
Banned
 
Join Date: Jul 2002
Posts: 257
Would Java help me with Delphi?
Justin26k is offline   Reply With Quote
Old 08-09-2002, 09:16 PM   #8
Member (13 bit)
 
DrZaius's Avatar
 
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
Java is similar to C++, while Delphi is similar to Pascal, so no.
DrZaius is offline   Reply With Quote
Old 08-09-2002, 09:21 PM   #9
Banned
 
Join Date: Jul 2002
Posts: 257
So what is usally easy for the beginner?
Justin26k is offline   Reply With Quote
Old 08-09-2002, 09:22 PM   #10
Member (13 bit)
 
DrZaius's Avatar
 
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
I would say Java is the best to start with.
DrZaius is offline   Reply With Quote
Old 08-09-2002, 10:54 PM   #11
Banned
 
Join Date: Jul 2002
Posts: 257
Can i make actual apps with java or just internet apps?

Thanks for the help
Justin26k is offline   Reply With Quote
Old 08-09-2002, 11:58 PM   #12
Member (13 bit)
 
DrZaius's Avatar
 
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
Yep, you can make actual applications that will run in Windows, Linux, MacOS, etc.

Don't confuse Java with JavaScript, which is just a scripting language used for web sites and is not really Java based.
DrZaius is offline   Reply With Quote
Old 08-10-2002, 12:19 AM   #13
Banned
 
Join Date: Jul 2002
Posts: 257
Do you know a actual program made in java a link maybe
Justin26k is offline   Reply With Quote
Old 08-10-2002, 12:34 AM   #14
Banned
 
Join Date: Jul 2002
Posts: 257
also some links to java tuts would be nice and last but not least what do you compile java in Do you compile it in Microsoft J++ Or Borland J Builder or are these even for Java?
Justin26k is offline   Reply With Quote
Old 08-10-2002, 12:45 AM   #15
Member (13 bit)
 
DrZaius's Avatar
 
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
You can use any of those programs to compile the Java code, or you can use the free compiler from Sun and use a text editor to write the code (that's what I do).

http://java.sun.com/products/jdk/1.1...k-windows.html

Here are some good basics.

http://java.sun.com/docs/books/tutorial/
http://javaboutique.internet.com/tutorials/Complete/

Hope that helps.
DrZaius is offline   Reply With Quote
Old 08-10-2002, 12:49 AM   #16
Member (12 bit)
 
Paul Victorey's Avatar
 
Join Date: Mar 1999
Location: MN or WI
Posts: 3,017
Quote:
Originally posted by mosquito
It is a lot easier then C++ due to:
- Garbage collection
- No explicit memory allocation (and deallocation)
- No pointers

You can actually use all the arguments that make java easier then C++ on C# too. C# is closer related to java then C++ actually.
Hehe, I prefer C++ over Java for exactly those three reasons

And, Java (and C#) may hide the use of pointers, but they're there underneath all the objects, and you need to know about them because of the difference between pass by reference and pass by value. I think the C++ style is actually easier because it's more obvious how you're passing parameters.
__________________
Paul M. Victorey
------------------
I am not responsible for any problems that may arise as a result of following my advice. This includes, but is not limited to, computer failure, loss of data, nuclear war, famine, boils, no clean laundry, your daughter running off with a biker gang, or armageddon. Take my advice at your own risk.
Paul Victorey is offline   Reply With Quote
Old 08-10-2002, 09:11 AM   #17
aym
Registered User
 
aym's Avatar
 
Join Date: Nov 2001
Posts: 1,965
If you want to see a real Java application, check out Forte 4 Java (AKA Sun One Studio), it's an IDE for creating Java programs.
http://wwws.sun.com/software/sundev/jde/buy/index.html
aym is offline   Reply With Quote
Old 08-12-2002, 05:43 AM   #18
SQL nutcase
 
mosquito's Avatar
 
Join Date: Sep 2000
Location: Belgium
Posts: 1,136
Send a message via AIM to mosquito
Quote:
Originally posted by Paul Victorey


Hehe, I prefer C++ over Java for exactly those three reasons

And, Java (and C#) may hide the use of pointers, but they're there underneath all the objects, and you need to know about them because of the difference between pass by reference and pass by value. I think the C++ style is actually easier because it's more obvious how you're passing parameters.
All true, but most programmers are pretty sloppy about this, resulting in a crash fest.
mosquito is offline   Reply With Quote
Reply

Bookmarks

Still Need Help? Type Your Keywords Here:


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 12:21 PM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
SEO by vBSEO 3.6.0 PL2