|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#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?
|
|
|
|
|
|
#2 |
|
Professional gadfly
|
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.
|
|
|
|
|
|
#3 |
|
Banned
Join Date: Jul 2002
Posts: 257
|
OK, Anymore opinions?
|
|
|
|
|
|
#4 |
|
SQL nutcase
|
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. |
|
|
|
|
|
#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
|
|
|
|
|
|
#6 |
|
Registered User
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. |
|
|
|
|
|
#7 |
|
Banned
Join Date: Jul 2002
Posts: 257
|
Would Java help me with Delphi?
|
|
|
|
|
|
#8 |
|
Member (13 bit)
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
|
Java is similar to C++, while Delphi is similar to Pascal, so no.
|
|
|
|
|
|
#9 |
|
Banned
Join Date: Jul 2002
Posts: 257
|
So what is usally easy for the beginner?
|
|
|
|
|
|
#10 |
|
Member (13 bit)
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
|
I would say Java is the best to start with.
|
|
|
|
|
|
#11 |
|
Banned
Join Date: Jul 2002
Posts: 257
|
Can i make actual apps with java or just internet apps?
Thanks for the help
|
|
|
|
|
|
#12 |
|
Member (13 bit)
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. |
|
|
|
|
|
#13 |
|
Banned
Join Date: Jul 2002
Posts: 257
|
Do you know a actual program made in java a link maybe
|
|
|
|
|
|
#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?
|
|
|
|
|
|
#15 |
|
Member (13 bit)
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. |
|
|
|
|
|
#16 | |
|
Member (12 bit)
Join Date: Mar 1999
Location: MN or WI
Posts: 3,017
|
Quote:
![]() 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. |
|
|
|
|
|
|
#17 |
|
Registered User
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 |
|
|
|
|
|
#18 | |
|
SQL nutcase
|
Quote:
|
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|