• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:15
CEST 17:15
KST 00:15
  • 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
[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature3Team Liquid Map Contest #21 - Presented by Monster Energy9uThermal's 2v2 Tour: $15,000 Main Event18Serral wins EWC 202549
Community News
Maestros of The Game—$20k event w/ live finals in Paris10Weekly Cups (Aug 11-17): MaxPax triples again!13Weekly Cups (Aug 4-10): MaxPax wins a triple6SC2's Safe House 2 - October 18 & 195Weekly Cups (Jul 28-Aug 3): herO doubles up6
StarCraft 2
General
affordable custom websites designed Geoff 'iNcontroL' Robinson has passed away RSL Revival patreon money discussion thread Weekly Cups (Aug 11-17): MaxPax triples again! What mix of new and old maps do you want in the next 1v1 ladder pool? (SC2) :
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris Master Swan Open (Global Bronze-Master 2) $5,100+ SEL Season 2 Championship (SC: Evo) Sparkling Tuna Cup - Weekly Open Tournament RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 487 Think Fast Mutation # 486 Watch the Skies Mutation # 485 Death from Below Mutation # 484 Magnetic Pull
Brood War
General
Maps with Neutral Command Centers Flash Announces (and Retracts) Hiatus From ASL [ASL20] Ro24 Preview Pt1: Runway How do the new Battle.net ranks translate? Victoria gamers
Tourneys
[Megathread] Daily Proleagues The Casual Games of the Week Thread [ASL20] Ro24 Group C [ASL20] Ro24 Group A
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting Muta micro map competition
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Path of Exile Dawn of War IV 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
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine European Politico-economics QA Mega-thread The Games Industry And ATVI
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
High temperatures on bridge(s) Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment"
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
Breaking the Meta: Non-Stand…
TrAiDoS
INDEPENDIENTE LA CTM
XenOsky
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2642 users

C#? - Page 3

Blogs > EsX_Raptor
Post a Reply
Prev 1 2 3 All
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#.
Prev 1 2 3 All
Please log in or register to reply.
Live Events Refresh
Next event in 8h 45m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko632
ProTech24
trigger 23
SpeCial 9
StarCraft: Brood War
Calm 7086
Bisu 3593
Shuttle 1591
Flash 1486
Jaedong 1481
EffOrt 828
firebathero 822
ZerO 693
BeSt 423
Soulkey 375
[ Show more ]
ggaemo 299
hero 273
Mini 243
Hyuk 168
Rush 160
Snow 111
sorry 110
Barracks 107
Killer 105
Nal_rA 97
Hyun 85
Mind 60
[sc1f]eonzerg 56
Light 52
JYJ51
TY 42
Aegong 37
Sacsri 27
scan(afreeca) 21
Terrorterran 19
JulyZerg 11
SilentControl 11
ajuk12(nOOB) 10
HiyA 10
IntoTheRainbow 8
ivOry 3
Dota 2
Gorgc9539
syndereN533
XcaliburYe343
League of Legends
Dendi923
Counter-Strike
flusha170
oskar153
markeloff110
Other Games
B2W.Neo1552
hiko909
FrodaN873
crisheroes483
Mlord428
RotterdaM221
Fuzer 169
XaKoH 149
KnowMe137
Liquid`VortiX134
ArmadaUGS130
Trikslyr42
ZerO(Twitch)11
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• poizon28 35
• davetesta12
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV482
League of Legends
• Nemesis3815
• Jankos1290
Upcoming Events
Replay Cast
8h 45m
LiuLi Cup
19h 45m
BSL Team Wars
1d 3h
Team Hawk vs Team Dewalt
Korean StarCraft League
1d 11h
CranKy Ducklings
1d 18h
SC Evo League
1d 20h
WardiTV Summer Champion…
1d 21h
Classic vs Percival
Spirit vs NightMare
CSO Cup
2 days
[BSL 2025] Weekly
2 days
Sparkling Tuna Cup
2 days
[ Show More ]
SC Evo League
2 days
BSL Team Wars
3 days
Team Bonyth vs Team Sziky
Afreeca Starleague
3 days
Queen vs HyuN
EffOrt vs Calm
Wardi Open
3 days
RotterdaM Event
3 days
Replay Cast
4 days
Afreeca Starleague
4 days
Rush vs TBD
Jaedong vs Mong
Afreeca Starleague
5 days
herO vs TBD
Royal vs Barracks
The PondCast
6 days
Liquipedia Results

Completed

Jiahua Invitational
uThermal 2v2 Main Event
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL Season 18: Qualifier 1
SEL Season 2 Championship
WardiTV Summer 2025
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

CSLAN 3
CSL Season 18: Qualifier 2
CSL 2025 AUTUMN (S18)
LASL Season 20
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
Maestros of the Game
EC S1
Sisters' Call Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
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.