• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 12:30
CEST 18:30
KST 01:30
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL62Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event21Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Program: SC2 / XSplit / OBS Scene Switcher The SCII GOAT: A statistical Evaluation Statistics for vetoed/disliked maps Weekly Cups (June 23-29): Reynor in world title form? PiG Sty Festival #5: Playoffs Preview + Groups Recap
Tourneys
RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays FEL Cracov 2025 (July 27) - $8000 live event Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Player “Jedi” cheat on CSL SC uni coach streams logging into betting site Flash Announces Hiatus From ASL Practice Partners (Official) ASL20 Preliminary Maps
Tourneys
The Casual Games of the Week Thread CSL Xiamen International Invitational [BSL20] Grand Finals - Sunday 20:00 CET [Megathread] Daily Proleagues
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread What do you want from future RTS games? Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Summer Games Done Quick 2025! Russo-Ukrainian War Thread US Politics Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 636 users

C#?

Blogs > EsX_Raptor
Post a Reply
Normal
EsX_Raptor
Profile Blog Joined February 2008
United States2801 Posts
April 19 2009 02:18 GMT
#1
I'm a college junior majoring in Computer Science and have been learning C++ since the first day.

But nowadays I'm hearing more and more people talking about how Java and C# are the best languages to go for at the moment as those are seemingly the only thing companies are using nowadays.

Every time I turn around the corner there's gonna be someone talking about either of those languages and barely hear anything about C++.

Now my question is: If Java and C# are currently the main trend, why are teachers at the universities teaching C++ and even Lisp? Is it because that's all they know or I'm just taking the Java and C# thing too seriously?

I'm confused...

Thanks~

*
Osmoses
Profile Blog Joined October 2008
Sweden5302 Posts
April 19 2009 02:35 GMT
#2
Whereas Java and C# are easy, convenient and powerful, C/C++ is still the best for performance. In other words, different jobs requires different languages. You don't do game programming in Java, and you don't program microchips in C. That's why some universities still teach perl and cobalt, etc.
Excuse me hun, but what is your name? Vivian? I woke up next to you naked and, uh, did we, um?
Jonoman92
Profile Blog Joined September 2006
United States9103 Posts
April 19 2009 02:39 GMT
#3
How do you pronounce C# when talking? I've never heard of it before.
Osmoses
Profile Blog Joined October 2008
Sweden5302 Posts
April 19 2009 02:41 GMT
#4
# is sharp, just like reading notes. Thus C# = C-sharp.
Excuse me hun, but what is your name? Vivian? I woke up next to you naked and, uh, did we, um?
artofmagic
Profile Blog Joined March 2005
United States1951 Posts
April 19 2009 02:45 GMT
#5
On April 19 2009 11:18 EsX_Raptor wrote:
I'm a college junior majoring in Computer Science and have been learning C++ since the first day.

But nowadays I'm hearing more and more people talking about how Java and C# are the best languages to go for at the moment as those are seemingly the only thing companies are using nowadays.

Every time I turn around the corner there's gonna be someone talking about either of those languages and barely hear anything about C++.

Now my question is: If Java and C# are currently the main trend, why are teachers at the universities teaching C++ and even Lisp? Is it because that's all they know or I'm just taking the Java and C# thing too seriously?

I'm confused...

Thanks~

they teach these languages so you can get a grasp of the different ideas in programming.

such as c++ for it's pointer, java for oop and etc.

evolve or die
Megalisk
Profile Blog Joined October 2008
United States6095 Posts
April 19 2009 02:49 GMT
#6
Also, once you learn a language like c++, learning other languages will be incredibly easy.
Tear stained american saints and dirty guitar dreams across a universe of desert and blue sky , gas station coffee love letters and two dollar pistol kisses from thirty five dollar hotel room stationary .
Random()
Profile Blog Joined August 2004
Kyrgyz Republic1462 Posts
April 19 2009 03:13 GMT
#7
The universities' goal is to teach you not the particular language, but the general concepts of programming. What you learn with C++ translates well to all other languages.

Also it is good to know how the stuff works on lower level, in C/C++ you can work directly with memory, interact with OS functions and do all sorts of hacks which you cannot do in Java/C#.

Java and C# do many things for you, such as automatic memory management or the huge class libraries that can handle routine tasks (managing strings, data collections, network, etc.), which in the end results in increased productivity because it makes programs less prone to human error. That is why they are so popular.

In practice, C/C++ is used where performance is critical: in applications such as games, graphics software, video encoding, software for embedded systems and so on. For tasks such as business/financial applications Java/C# is usually a better choice.
NicolBolas
Profile Blog Joined March 2009
United States1388 Posts
April 19 2009 03:19 GMT
#8
On April 19 2009 11:49 Megalisk wrote:
Also, once you learn a language like c++, learning other languages will be incredibly easy.


Yes, that's a big part of it. C# and Java are very protected environments; C++ is about as far from a protected environment as you can get. So if you can manage C++, you can easily manage C#/Java.

On April 19 2009 12:13 Random() wrote:
software for embedded systems


You'd be surprised how much embedded systems rely on Java implementations.
So you know, cats are interesting. They are kind of like girls. If they come up and talk to you, it's great. But if you try to talk to them, it doesn't always go so well. - Shigeru Miyamoto
EsX_Raptor
Profile Blog Joined February 2008
United States2801 Posts
April 19 2009 03:22 GMT
#9
That's really nice, thank you guys for your insight on this.

Now that I think about it, it's true. The reason they teach us C++ is because the language has a lot of things in it that are very useful in understanding the main concepts other programming languages, paradigms, styles and such are all about.

Another question: I've heard before that C++ is used a lot in game programming. But I've also heard that Java is good for this end too? o,o or maybe I heard wrong cause I don't really think such a slow executing language can have a place in today's gaming industry.
Divinek
Profile Blog Joined November 2006
Canada4045 Posts
April 19 2009 03:24 GMT
#10
On April 19 2009 11:39 Jonoman92 wrote:
How do you pronounce C# when talking? I've never heard of it before.


http://lmgtfy.com/?q=c# programming language

srsly though, c++ is a great thing to learn dont worry about anything else, c++ is very useful and a great language to know.

Never attribute to malice that which can be adequately explained by stupidity.
Oh goodness me, FOX tv where do you get your sight? Can't you keep track, the puck is black. That's why the ice is white.
miseiler
Profile Blog Joined October 2008
United States1389 Posts
April 19 2009 03:25 GMT
#11
Don't be afraid to learn new languages. In many cases (Python, perl) it's incredibly easy.

What Random() says is exactly correct. C++ teaches the basics of C (And thus, the imperative programming skills he mentioned) and it also teaches the *basics* of OOP. It's the language which arguably gets your feet wet in the most areas at once.

[If someone wanted to blast me for not promoting Java for its threading model they would not be wrong, however if people really cared about teaching kids that they'd be learning Haskell, etc.]

Honestly, no matter what you learn now, you will be doing things differently in the workplace. Don't worry about it.
"Jinro soo manly wearing only a T-Shirt while the Koreans freeze in their jackets" -- Double_O
"He's from Sweden, man. We have to fight polar bears on our way to school." -- Yusername
Phyre
Profile Blog Joined December 2006
United States1288 Posts
Last Edited: 2009-04-19 03:33:33
April 19 2009 03:31 GMT
#12
On April 19 2009 12:22 EsX_Raptor wrote:
That's really nice, thank you guys for your insight on this.

Now that I think about it, it's true. The reason they teach us C++ is because the language has a lot of things in it that are very useful in understanding the main concepts other programming languages, paradigms, styles and such are all about.

Another question: I've heard before that C++ is used a lot in game programming. But I've also heard that Java is good for this end too? o,o or maybe I heard wrong cause I don't really think such a slow executing language can have a place in today's gaming industry.

If you want to be a game programmer C++ is the only choice for AAA (read: big) game studios. From what I've heard, casual/smaller game studios might work in things like Flash/Actionscript or Java for mobile development. Where I work all the game related stuff is done in C++ and we use C# for tools.
"Oh no, I got you with your pants... on your face... That's not how you wear pants." - Nintu, catching 1 hatch lurks.
miseiler
Profile Blog Joined October 2008
United States1389 Posts
April 19 2009 03:32 GMT
#13
On April 19 2009 12:22 EsX_Raptor wrote:
Another question: I've heard before that C++ is used a lot in game programming. But I've also heard that Java is good for this end too? o,o or maybe I heard wrong cause I don't really think such a slow executing language can have a place in today's gaming industry.


People write games in Python (Frets on Fire)...

There's a lot to be said for rapid prototyping, as well. Write the game in a 'slow' language, then rewrite the performance-critical bits in C.

In PC gaming, at least, there's a very, very wide field of games that require no performance whatsoever. Solitaire, say. Or starcraft.
"Jinro soo manly wearing only a T-Shirt while the Koreans freeze in their jackets" -- Double_O
"He's from Sweden, man. We have to fight polar bears on our way to school." -- Yusername
benjammin
Profile Blog Joined August 2008
United States2728 Posts
April 19 2009 03:34 GMT
#14
On April 19 2009 12:24 Divinek wrote:
Show nested quote +
On April 19 2009 11:39 Jonoman92 wrote:
How do you pronounce C# when talking? I've never heard of it before.


http://lmgtfy.com/?q=c# programming language

srsly though, c++ is a great thing to learn dont worry about anything else, c++ is very useful and a great language to know.



is it me or has LMGTFY gone from being funny in a passive-aggressive sort of way to just outright dickishness
wash uffitizi, drive me to firenze
Hypnosis
Profile Blog Joined October 2007
United States2061 Posts
April 19 2009 03:35 GMT
#15
C flat? or C sharp. thats the question. I think this is one of those things where it cant hurt to know them all bro.
Science without religion is lame, Religion without science is blind
EsX_Raptor
Profile Blog Joined February 2008
United States2801 Posts
April 19 2009 03:36 GMT
#16
On April 19 2009 12:31 Phyre wrote:
If you want to be a game programmer C++ is the only choice for AAA (read: big) game studios. From what I've heard, casual/smaller game studios might work in things like Flash/Actionscript or Java for mobile development. Where I work all the game related stuff is done in C++ and we use C# for tools.

nice! =)

but i dont get something, how is c# used for tools? can c++ and c# be merged or something?

On April 19 2009 12:32 miseiler wrote:
There's a lot to be said for rapid prototyping, as well. Write the game in a 'slow' language, then rewrite the performance-critical bits in C.

same thing here, can a game written in, say python, be also merged with other C code?
Phrujbaz
Profile Blog Joined September 2008
Netherlands512 Posts
April 19 2009 03:36 GMT
#17
http://en.wikipedia.org/wiki/D_(programming_language)
Caution! Future approaching rapidly at a rate of about 60 seconds per minute.
keV.
Profile Blog Joined February 2009
United States3214 Posts
Last Edited: 2009-04-19 03:45:03
April 19 2009 03:43 GMT
#18
I think C is a better place to start so you can better understand what STL lib is actually doing in C++.

Quality > Quantity. Everyone should properly suffer through linked lists, binary trees and other data structures imo.

http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html
"brevity is the soul of wit" - William Shakesman
keV.
Profile Blog Joined February 2009
United States3214 Posts
April 19 2009 03:46 GMT
#19
On April 19 2009 12:36 EsX_Raptor wrote:
Show nested quote +
On April 19 2009 12:31 Phyre wrote:
If you want to be a game programmer C++ is the only choice for AAA (read: big) game studios. From what I've heard, casual/smaller game studios might work in things like Flash/Actionscript or Java for mobile development. Where I work all the game related stuff is done in C++ and we use C# for tools.

nice! =)

but i dont get something, how is c# used for tools? can c++ and c# be merged or something?

Show nested quote +
On April 19 2009 12:32 miseiler wrote:
There's a lot to be said for rapid prototyping, as well. Write the game in a 'slow' language, then rewrite the performance-critical bits in C.

same thing here, can a game written in, say python, be also merged with other C code?


You can't merge two languages really. You can rewrite both into one, thats about it. Unless you include like assembly and stuff.
"brevity is the soul of wit" - William Shakesman
EsX_Raptor
Profile Blog Joined February 2008
United States2801 Posts
Last Edited: 2009-04-19 03:48:58
April 19 2009 03:48 GMT
#20
On April 19 2009 12:43 keV. wrote:
I think C is a better place to start so you can better understand what STL lib is actually doing in C++.

Quality > Quantity. Everyone should properly suffer through linked lists, binary trees and other data structures imo.

http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html

LMAO im reading this and it's giving me the lols xD

however, i dont fit his complaints about today's kids majoring in cs (i actually had to deal with recursion and pointers A LOT... so i guess this is more university-dependent rather than generational?)

edit:
On April 19 2009 12:46 keV. wrote:
You can't merge two languages really. You can rewrite both into one, thats about it. Unless you include like assembly and stuff.

thank you for clarifying this =)
Cambium
Profile Blog Joined June 2004
United States16368 Posts
April 19 2009 03:50 GMT
#21
C++ is a very nice language in that it encompasses a lot of concepts. However, starting with C++ (i.e., if you haven't done any programming before) is a questionable choice.

Java and C# are indeed the "main trend" of software development these days for Windows application. Java is pretty much the standard for any back-end server due to its enormous core libraries and documentations. Windows application in anything other than C# is simply a pain in the ass.

Performance these days are generally negligible (relatively speaking), as they can be easily made up with hardware improvements (relatively speaking). These is why more and more companies choose "less efficient" (arguable) languages such as Java and C# over C/C++. However, there are definitely cases where certain languages are preferred over others. Some examples include video games (although C# seems to be gaining popularity), and any application where timing is absolutely crucial (such as hedging firms/arbitrage detection algorithms).
When you want something, all the universe conspires in helping you to achieve it.
Not_Computer
Profile Blog Joined January 2007
Canada2277 Posts
Last Edited: 2009-04-21 23:56:11
April 19 2009 03:50 GMT
#22
I have a friend who is also looking to learn a programming language during the summer and he asked me what to learn... I suggested him C and C++ as a lot of you guys did, though I also suggested Python, he suggested Java, and a friend suggested C#.

In your opinion, what is the best compilerIDE (per language) to use when learning?

I can google some but I wanna hear what TL thinks.

edit: also, are there any downloadable programming textbooks? (or simple, thorough learning guides)
"Jaedong hyung better be ready. I'm going to order the most expensive dinner in Korea."
Cambium
Profile Blog Joined June 2004
United States16368 Posts
April 19 2009 03:52 GMT
#23
On April 19 2009 12:50 Not_Computer wrote:
I have a friend who is also looking to learn a programming language during the summer and he asked me what to learn... I suggested him C and C++ as a lot of you guys did, though I also suggested Python and Java.

In your opinion, what is the best compiler (per language) to use when learning?

I can google some but I wanna hear what TL thinks.


Do you mean "compiler" or "IDE"?
When you want something, all the universe conspires in helping you to achieve it.
keV.
Profile Blog Joined February 2009
United States3214 Posts
April 19 2009 03:52 GMT
#24
On April 19 2009 12:48 EsX_Raptor wrote:
Show nested quote +
On April 19 2009 12:43 keV. wrote:
I think C is a better place to start so you can better understand what STL lib is actually doing in C++.

Quality > Quantity. Everyone should properly suffer through linked lists, binary trees and other data structures imo.

http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html

LMAO im reading this and it's giving me the lols xD

however, i dont fit his complaints about today's kids majoring in cs (i actually had to deal with recursion and pointers A LOT... so i guess this is more university-dependent rather than generational?)

edit:
Show nested quote +
On April 19 2009 12:46 keV. wrote:
You can't merge two languages really. You can rewrite both into one, thats about it. Unless you include like assembly and stuff.

thank you for clarifying this =)


Heh, yea joel is great and he makes me feel alot better about the classes I take when I get owned by the midterms. Wasn't calling you a java school guy anything, I just thought it was a good read and pretty relevant. The problem really is that all those thousands of "game design" and crap 1.5 to 2 year schools are preparing you for a job that is already done by thousands of people in India.
"brevity is the soul of wit" - William Shakesman
arcticStorm
Profile Joined January 2009
United States295 Posts
Last Edited: 2009-04-19 03:53:34
April 19 2009 03:52 GMT
#25
On April 19 2009 12:50 Not_Computer wrote:
I have a friend who is also looking to learn a programming language during the summer and he asked me what to learn... I suggested him C and C++ as a lot of you guys did, though I also suggested Python and Java.

In your opinion, what is the best compiler (per language) to use when learning?

I can google some but I wanna hear what TL thinks.


Assuming you mean IDE,

I like JCreator for java. A nice clean interface. Extra stuff doesn't get in the way of beginners.

I heard Eclipse is good with a lot of powerful tools as well
This statement is a lie.
Not_Computer
Profile Blog Joined January 2007
Canada2277 Posts
Last Edited: 2009-04-19 03:56:34
April 19 2009 03:53 GMT
#26
On April 19 2009 12:52 Cambium wrote:
Show nested quote +
On April 19 2009 12:50 Not_Computer wrote:
I have a friend who is also looking to learn a programming language during the summer and he asked me what to learn... I suggested him C and C++ as a lot of you guys did, though I also suggested Python and Java.

In your opinion, what is the best compiler (per language) to use when learning?

I can google some but I wanna hear what TL thinks.


Do you mean "compiler" or "IDE"?


I'm a noob

edit: yes, IDE
"Jaedong hyung better be ready. I'm going to order the most expensive dinner in Korea."
keV.
Profile Blog Joined February 2009
United States3214 Posts
April 19 2009 03:54 GMT
#27
If you can handle pointer arithmetic and some of the more complex data structures, the time it takes to learn a new language is pretty much negligible.
"brevity is the soul of wit" - William Shakesman
fight_or_flight
Profile Blog Joined June 2007
United States3988 Posts
April 19 2009 03:55 GMT
#28
Correct me if I'm wrong, but I think that you hear a lot about Java and C# in the same way you hear a lot about linux. A lot of noise is made because finally there is an alternative to the defacto standard. It doesn't necessarily mean it is widely used in comparasin.
Do you really want chat rooms?
Cambium
Profile Blog Joined June 2004
United States16368 Posts
April 19 2009 03:55 GMT
#29
That's an IDE.

I primarily code in Java, and most people (99%?) use Eclipse. I've done C/C++ on Unix with VI and GCC/G++. On windows, Visual Studio is actually not THAT bad (although horribly slow), I really like their debugger.
When you want something, all the universe conspires in helping you to achieve it.
arcticStorm
Profile Joined January 2009
United States295 Posts
April 19 2009 03:56 GMT
#30
Also, in response to original post, I think java is taught more than c++ now is because its newer, has better documentation and organization (C++ data structures, classes, pointers get really confusing taken all at once), it's use in web apps, and it's easy accessibility (the whole thing is object oriented unlike C++ which mixes and matches). Well at least that's how java has come across in my high school compsci class.
This statement is a lie.
keV.
Profile Blog Joined February 2009
United States3214 Posts
April 19 2009 03:56 GMT
#31
On April 19 2009 12:55 fight_or_flight wrote:
Correct me if I'm wrong, but I think that you hear a lot about Java and C# in the same way you hear a lot about linux. A lot of noise is made because finally there is an alternative to the defacto standard. It doesn't necessarily mean it is widely used in comparasin.


Java is definitely more widely taught. Its easier to teach and easier to learn.
"brevity is the soul of wit" - William Shakesman
Cambium
Profile Blog Joined June 2004
United States16368 Posts
April 19 2009 03:58 GMT
#32
On April 19 2009 12:55 fight_or_flight wrote:
Correct me if I'm wrong, but I think that you hear a lot about Java and C# in the same way you hear a lot about linux. A lot of noise is made because finally there is an alternative to the defacto standard. It doesn't necessarily mean it is widely used in comparasin.


It actually is.

Java is by far the most popular programming language used today.

Here's the first link from Google:
http://www.devtopics.com/most-popular-programming-languages/

Not saying it's 100% reliable, but it definitely shows a trend.

I've had three different jobs (vastly different) in the past, all companies used Java in some way (two used it for server, one used it to build an online App).
When you want something, all the universe conspires in helping you to achieve it.
Cambium
Profile Blog Joined June 2004
United States16368 Posts
April 19 2009 03:59 GMT
#33
On April 19 2009 12:56 arcticStorm wrote:
Also, in response to original post, I think java is taught more than c++ now is because its newer, has better documentation and organization (C++ data structures, classes, pointers get really confusing taken all at once), it's use in web apps, and it's easy accessibility (the whole thing is object oriented unlike C++ which mixes and matches). Well at least that's how java has come across in my high school compsci class.


Java is also great because the code is generally much cleaner (less hacks), which provides extra readability, maintainability and reusability.
When you want something, all the universe conspires in helping you to achieve it.
EsX_Raptor
Profile Blog Joined February 2008
United States2801 Posts
Last Edited: 2009-04-19 04:03:57
April 19 2009 03:59 GMT
#34
On April 19 2009 12:50 Not_Computer wrote:
In your opinion, what is the best compiler (per language) to use when learning?

yeah assuming you mean IDE, I'd say Microsoft Visual C++ Express Edition. It is free and very good.

Also, I'd recommend your friend starts out with C++. Yes, it is hard, but I'm now convinced it's honestly the best language to start out with as it teaches you a lot about the known paradigms.

edit: also what Cambium said..
FreeZEternal
Profile Joined January 2003
Korea (South)3396 Posts
April 19 2009 04:10 GMT
#35
no fucking way, start with c++? C++ is a fucked up language. Go for C if you wanna learn pointer arithmetic and other interesting stuff. Then choose an OOP language that's not C++ lol.
haduken
Profile Blog Joined April 2003
Australia8267 Posts
April 19 2009 04:55 GMT
#36
traditional com science courses always start you off in C or C++ and that's the way it should be.
Some modern university give you C#, JAVA etc to better equip you for jobs and there is also nothing wrong with it.

Learn the concepts and take an elective in C# if you must but you really should just pick things up by self study.
Rillanon.au
cgrinker
Profile Blog Joined December 2007
United States3824 Posts
April 19 2009 05:02 GMT
#37
I think we should only code in 80x86 assembly.
Strayline
Profile Blog Joined January 2009
United States330 Posts
Last Edited: 2009-04-19 05:39:02
April 19 2009 05:33 GMT
#38
Heres my two cents. If you do learn all the fucked up stuff about C++ (and yes, there's plenty), when you try to pick up some of the more modern languages, you will be in a much better position than someone trying to go the other way. And there's still tons of work that must be done (and will need to be for the foreseeable future) in an "unmanaged" language. For example, there is a disclaimer in the Java License agreement that the language cannot be used in Aircraft autopilots or the controls systems of nuclear power plants. That basically means for those types of situations, ether C or C++ will be used and which one is used will depend on the situation. Plenty of C gets written every day for embedded devices.

To pick a completely random analogy, think of going from C++ to Java like playing an RTS without automining/MBS and then switching one that had that stuff. So the answer is obvious: Garbage collectors will ruin competitive programming.

Seriously though, I'm really glad I learned C/C++ first. It might have been easier the other way but I feel like I'm a better programmer in the end.
Raithed
Profile Blog Joined May 2007
China7078 Posts
April 19 2009 05:37 GMT
#39
i heard java is a dying language.
Phyre
Profile Blog Joined December 2006
United States1288 Posts
Last Edited: 2009-04-19 05:52:46
April 19 2009 05:51 GMT
#40
On April 19 2009 12:36 EsX_Raptor wrote:
Show nested quote +
On April 19 2009 12:31 Phyre wrote:
If you want to be a game programmer C++ is the only choice for AAA (read: big) game studios. From what I've heard, casual/smaller game studios might work in things like Flash/Actionscript or Java for mobile development. Where I work all the game related stuff is done in C++ and we use C# for tools.

nice! =)

but i dont get something, how is c# used for tools? can c++ and c# be merged or something?

Tools meaning stuff like say... a program that provides a GUI for a level designer to configure an AI Bot. The tool is external to the game, it's a windows app. Throwing together little windows apps quickly is something C# excels at. Lots of little tools are made to help developers develop more efficiently.

So let's say you were making a game, perhaps you would use C# to make your level editor or something.
"Oh no, I got you with your pants... on your face... That's not how you wear pants." - Nintu, catching 1 hatch lurks.
Mastermind
Profile Blog Joined April 2008
Canada7096 Posts
Last Edited: 2009-04-19 06:03:23
April 19 2009 06:00 GMT
#41
On April 19 2009 12:43 keV. wrote:
I think C is a better place to start so you can better understand what STL lib is actually doing in C++.

Quality > Quantity. Everyone should properly suffer through linked lists, binary trees and other data structures imo.

http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html

This article is great, and I totally agree with it. Introductory cs course are far to easy. Im glad my school at least forced you to learn C on top of Java and offered a course in Scheme, which I took, but most people dont because it is too hard. Far to many times I have had to work with people in 3rd and 4th year course that just dont know how to program properly and should not be in cs. I found out recently my school is actually switching its first cs course to python instead of java because it is easier to learn for newbies....

On April 19 2009 12:50 Not_Computer wrote:
I have a friend who is also looking to learn a programming language during the summer and he asked me what to learn... I suggested him C and C++ as a lot of you guys did, though I also suggested Python, he suggested Java, and a friend suggested C#.

In your opinion, what is the best compiler (per language) to use when learning?

I can google some but I wanna hear what TL thinks.

edit: also, are there any downloadable programming textbooks? (or simple, thorough learning guides)

For Java use Eclipse. It is a great IDE. I think you can also use it for C/C++, but I never have. I did all my C/C++ programming using text editors and the gcc/g++ compilers on solaris and linux machines which can be extremely frustrating at times.
cgrinker
Profile Blog Joined December 2007
United States3824 Posts
April 19 2009 06:32 GMT
#42
We program in my CS program (my school clumps classes into programs) using Java and talk extensively about recursion. And maybe we don't have goto in java but we are well aware of what recursion is and are expected to implement it most of the time (except in the HW I just turned in )

If you want to say that Java is causing Universities to stop teaching students certain programing concepts then I would blame your school. The concepts stay the same across the languages.
gzealot
Profile Blog Joined November 2008
Singapore238 Posts
April 19 2009 07:04 GMT
#43
Hmm right now i am in a software development company as an intern, and i think it isnt really what language you learn, as different languages have different support in different areas. DirectX is a very common game programming abstraction level, and only really works with C++. I used it with DirectX 9. Havent really tried with Java, but some simple console stuff that is considered normal in C++/C# is quite tedious with Java, but has a lot of libraries to handle stuff. and handling XML with JAVA is just a PAIN in the ass, unlike other scripting languages like PHP which handles XML like a charm. I considered C# to be a better equivalent of VB, which allows me to write GUI apps quickly and easily with the power of C++. Eclipse is good, I tried with notepad and it totally sucks balls

Btw, to the people in the know, downloading the free Visual C++ Express or Visual C# or the all-in-one Visual Studios, which is the best option? I could easily forsee myself using both languages.
Amnesty
Profile Joined April 2003
United States2054 Posts
April 19 2009 07:18 GMT
#44
On April 19 2009 13:10 FreeZEternal wrote:
no fucking way, start with c++? C++ is a fucked up language. Go for C if you wanna learn pointer arithmetic and other interesting stuff. Then choose an OOP language that's not C++ lol.


Missing out on vector, string, and boost library for no real benefit is more fucked i would say.

The sky just is, and goes on and on; and we play all our BW games beneath it.
Mazar
Profile Blog Joined May 2008
United States135 Posts
Last Edited: 2009-04-19 07:25:59
April 19 2009 07:25 GMT
#45
Learning C or C++ gives lets you learn the basics and gives you a strong base to expand your programming upon. After learning ways to solve problems, the language doesn't really matter, it's just different syntax with some differences, but after you learn how to actually solve problems, which is the hard part, languages aren't much of a barrier.

Also, Java was written in C, so think about that.
Peanut Butter
FreeZEternal
Profile Joined January 2003
Korea (South)3396 Posts
Last Edited: 2009-04-20 14:57:04
April 20 2009 14:56 GMT
#46
On April 19 2009 16:04 gzealot wrote:
Hmm right now i am in a software development company as an intern, and i think it isnt really what language you learn, as different languages have different support in different areas. DirectX is a very common game programming abstraction level, and only really works with C++. I used it with DirectX 9. Havent really tried with Java, but some simple console stuff that is considered normal in C++/C# is quite tedious with Java, but has a lot of libraries to handle stuff. and handling XML with JAVA is just a PAIN in the ass, unlike other scripting languages like PHP which handles XML like a charm. I considered C# to be a better equivalent of VB, which allows me to write GUI apps quickly and easily with the power of C++. Eclipse is good, I tried with notepad and it totally sucks balls

Btw, to the people in the know, downloading the free Visual C++ Express or Visual C# or the all-in-one Visual Studios, which is the best option? I could easily forsee myself using both languages.


yeap pre JDK 5 handling console stuff can be a pain in the ass. With JDK 5 and up, you can just use the Scanner class to read input from the console. Eclipse is good, NetBeans is good as well. For .NET, nothing beats Visual Studio +_+
yenta
Profile Blog Joined April 2006
Poland1142 Posts
Last Edited: 2009-04-20 15:33:18
April 20 2009 15:33 GMT
#47
On April 19 2009 11:35 Osmoses wrote:
Whereas Java and C# are easy, convenient and powerful, C/C++ is still the best for performance. In other words, different jobs requires different languages. You don't do game programming in Java, and you don't program microchips in C. That's why some universities still teach perl and cobalt, etc.

How wrong can you be? You definitely program microchips in C and Java is definitely used to make games.
Trutacz Practice Discord - https://discord.gg/PWF7Pv
Osmoses
Profile Blog Joined October 2008
Sweden5302 Posts
April 23 2009 00:17 GMT
#48
On April 21 2009 00:33 yenta wrote:
Show nested quote +
On April 19 2009 11:35 Osmoses wrote:
Whereas Java and C# are easy, convenient and powerful, C/C++ is still the best for performance. In other words, different jobs requires different languages. You don't do game programming in Java, and you don't program microchips in C. That's why some universities still teach perl and cobalt, etc.

How wrong can you be? You definitely program microchips in C and Java is definitely used to make games.

While you can program microchips in C, it is not the best way to go because of the lack of memory. While you can program games in java, you shouldn't, because the automatic garbage collector among other things slows down performance.

Mind you I've never even tried programming microchips in anything but assembler, I'm just regurgitating the answer I got from my professor when I asked about it. I also have not programmed any high-tech games in java, again I'm just telling you what I was told by people who ought to know better, some of which ran a game programming college.
Excuse me hun, but what is your name? Vivian? I woke up next to you naked and, uh, did we, um?
Ace
Profile Blog Joined October 2002
United States16096 Posts
April 23 2009 02:16 GMT
#49
On April 21 2009 00:33 yenta wrote:
Show nested quote +
On April 19 2009 11:35 Osmoses wrote:
Whereas Java and C# are easy, convenient and powerful, C/C++ is still the best for performance. In other words, different jobs requires different languages. You don't do game programming in Java, and you don't program microchips in C. That's why some universities still teach perl and cobalt, etc.

How wrong can you be? You definitely program microchips in C and Java is definitely used to make games.


For majority of games most people are talking AAA development studios, which you surely wouldn't want to use Java for (yet). C++ has too many tools and tons of libraries that are just there for games.

Also joelonsoftware is one of my fav sites.
Math me up, scumboi. - Acrofales
b3h47pte
Profile Blog Joined May 2007
United States1317 Posts
Last Edited: 2009-04-23 02:37:48
April 23 2009 02:35 GMT
#50
C++ and using VIsual studios 2008. And yes, visual studios is probably one of the better IDE's don't listen to everybody blasting VS

Java is a good language ( i guess) but don't use NetBeans! it's a blasted IDE...

C# is a good language too. But i would much rather program using C++/CLI with .NET than use C#.
Normal
Please log in or register to reply.
Live Events Refresh
FEL
12:00
Cracov 2025: Qualifier #2
CranKy Ducklings587
IndyStarCraft 369
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 522
IndyStarCraft 369
Hui .257
MindelVK 29
StarCraft: Brood War
Calm 3683
Rain 3159
Shuttle 1226
Horang2 1187
Bisu 1016
EffOrt 844
TY 346
Stork 339
Mini 282
Hyuk 251
[ Show more ]
Soma 163
GuemChi 163
hero 106
Barracks 90
ToSsGirL 87
Hyun 64
GoRush 60
PianO 49
sas.Sziky 40
Free 28
Terrorterran 22
HiyA 10
ivOry 5
Stormgate
BeoMulf142
Dota 2
qojqva3423
League of Legends
singsing2852
Counter-Strike
byalli234
edward89
kRYSTAL_69
Super Smash Bros
Mew2King72
Chillindude57
Westballz14
Heroes of the Storm
Khaldor717
Liquid`Hasu488
Other Games
Gorgc3391
FrodaN1594
ArmadaUGS106
KnowMe93
Organizations
Other Games
gamesdonequick15999
EGCTV1772
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Adnapsc2 15
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 3573
• Ler144
Other Games
• WagamamaTV458
• Shiphtur229
Upcoming Events
BSL: ProLeague
1h 30m
Dewalt vs Bonyth
Wardi Open
18h 30m
Monday Night Weeklies
23h 30m
Replay Cast
1d 7h
Sparkling Tuna Cup
1d 17h
WardiTV European League
1d 23h
PiGosaur Monday
2 days
The PondCast
2 days
WardiTV European League
2 days
Replay Cast
3 days
[ Show More ]
RSL Revival
3 days
ByuN vs SHIN
Clem vs Reynor
Replay Cast
4 days
RSL Revival
4 days
Classic vs Cure
FEL
4 days
RSL Revival
5 days
FEL
5 days
FEL
5 days
Sparkling Tuna Cup
6 days
RSL Revival
6 days
FEL
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
CSL Xiamen Invitational
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.