• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:57
CEST 16:57
KST 23:57
  • 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 ASL50Weekly Cups (June 23-29): Reynor in world title form?12FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
The SCII GOAT: A statistical Evaluation The GOAT ranking of GOAT rankings How does the number of casters affect your enjoyment of esports? Statistics for vetoed/disliked maps Esports World Cup 2025 - Final Player Roster
Tourneys
RSL: Revival, a new crowdfunded tournament series [GSL 2025] Code S: Season 2 - Semi Finals & Finals $5,100+ SEL Season 2 Championship (SC: Evo) FEL Cracov 2025 (July 27) - $8000 live event HomeStory Cup 27 (June 27-29)
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 BGH Auto Balance -> http://bghmmr.eu/ Unit and Spell Similarities Help: rep cant save Flash Announces Hiatus From ASL
Tourneys
[BSL20] Grand Finals - Sunday 20:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile 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
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Trading/Investing Thread The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread NBA General Discussion Formula 1 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: 785 users

C#?

Blogs > EsX_Raptor
Post a Reply
1 2 3 Next All
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 =)
1 2 3 Next All
Please log in or register to reply.
Live Events Refresh
OSC
13:00
King of the Hill #216
davetesta77
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko633
Hui .257
Vindicta 38
StarCraft: Brood War
Britney 56616
Calm 5515
Rain 3297
Shuttle 1794
EffOrt 1387
Horang2 1363
Hyuk 975
Larva 603
BeSt 300
Light 278
[ Show more ]
hero 198
Leta 180
Mini 163
Mind 114
ToSsGirL 96
Mong 77
Pusan 77
Snow 74
Rush 67
Hyun 64
Nal_rA 59
Shinee 47
Barracks 42
JYJ31
soO 27
Movie 24
Backho 13
Shine 13
HiyA 11
yabsab 9
IntoTheRainbow 8
SilentControl 6
zelot 5
Dota 2
Gorgc11175
qojqva2867
League of Legends
singsing2653
Counter-Strike
edward6
zeus0
Other Games
Grubby2693
B2W.Neo1496
hiko1162
Fuzer 293
XaKoH 275
QueenE26
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• Michael_bg 8
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 2747
• WagamamaTV402
League of Legends
• Nemesis6574
• Jankos1108
• TFBlade943
Upcoming Events
WardiTV European League
1h 3m
Scarlett vs Percival
Jumy vs ArT
YoungYakov vs Shameless
uThermal vs Fjant
Nicoract vs goblin
Harstem vs Gerald
FEL
1h 3m
Big Brain Bouts
1h 3m
Korean StarCraft League
12h 3m
CranKy Ducklings
19h 3m
RSL Revival
19h 3m
FEL
1d 1h
RSL Revival
1d 19h
FEL
1d 21h
BSL: ProLeague
2 days
Dewalt vs Bonyth
[ Show More ]
Replay Cast
3 days
Sparkling Tuna Cup
3 days
The PondCast
4 days
Replay Cast
5 days
RSL Revival
5 days
Replay Cast
6 days
RSL Revival
6 days
Liquipedia Results

Completed

Proleague 2025-06-28
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
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
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.