• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 01:50
CEST 07:50
KST 14:50
  • 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
[ASL22] Ro8 Preview: In A Tizzy9[ASL22] Ro16 Preview: Holy Diver5[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9
Community News
Weekly Cups (Sep 13-20): herO scores triple1BSL Season 235Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down1StarCraft open world shooter announced at BlizzCon101Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool How do you feel about the StarCraft shooter announcement at BlizzCon 2026? The Death of Cheese: From a Professional Cheeser Weekly Cups (Sep 13-20): herO scores triple
Tourneys
Stellar Fest TWO the Moon (Dec 16-20) Sparkling Tuna Cup - Weekly Open Tournament 2026 GSTL Announcement RSL Revival: Season 6 - Qualifiers and Main Event RSL goes to London! 2026 Offline Finals Nov 21-22
Strategy
[H] ZvP Mid-Late Game: Stalkers Collossi HT
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 544 Double Trouble The PondCast: SC2 News & Results Mutation # 543 Enhanced Defenses Mutation # 542 The Ascended
Brood War
General
an AI researcher's take on the ladder bot BW General Discussion screpdb: new Starcraft reporting tool Bot on ladder [ASL22] Ro8 Preview: In A Tizzy
Tourneys
[ASL22] Ro8 Day 2 [ASL22] Ro16 Group D [ASL22] Ro8 Day 1 [IPSL] IPSL is Back With Winter 26-27!
Strategy
Cliff Jump Revisited (1 in a 1000 strategy) Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation
Other Games
General Games
Diablo IV Nintendo Switch Thread Warcraft III: The Frozen Throne Stormgate/Frost Giant Megathread EVE Corporation
Dota 2
Dota 2 Champions League Season 3 Begins April 25! Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Artificial Intelligence Thread Things Aren’t Peaceful in Palestine All you football fans (soccer)!
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! [Manga] One Piece Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Recent Gifted Posts
Blogs
Gaming Intensity, Problemati…
TrAiDoS
38 yo Retired SWE loo…
PurE)Rabbit-SF
Can Bots Beat Pros?? Starcr…
namkraft
[meme] I finally understa…
LUCKY_NOOB
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7765 users

The Big Programming Thread - Page 276

Forum Index > General Forum
Post a Reply
Prev 1 274 275 276 277 278 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
aurum510
Profile Joined July 2010
United States229 Posts
March 21 2013 17:53 GMT
#5501
On March 22 2013 02:48 Kambing wrote:
Show nested quote +
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!
Kambing
Profile Joined May 2010
United States1176 Posts
March 21 2013 18:31 GMT
#5502
On March 22 2013 02:53 aurum510 wrote:
Show nested quote +
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
March 21 2013 19:03 GMT
#5503
On March 22 2013 02:41 Kambing wrote:
Show nested quote +
On March 22 2013 01:53 ddengster wrote:
On March 22 2013 01:26 CecilSunkure wrote:
On March 22 2013 01:14 Tobberoth wrote:
On March 21 2013 09:04 darkness wrote:
What makes C++ so famous for game development? You don't have to describe in details.

Thanks.

I've heard tons of reasons, some of them make sense, others do not. The most classic argument is that higher level languages like C# are too slow. This argument is quite weak, careful benchmarking shows that the difference is quite small nowadays, wellwritten C++ code and wellwritten C# code will often perform very very similarly.

The best reason I've heard has to do with the fact that DirectX etc is quite hard to work with effectively from higher level languages. Other than that, C++ offers a lot of flexibility which can be nice for doing larger scale optimizations.

Two words ruin C#: garbage collection.


garbage collection(GC) with respect to bad performance or?
In my opinion, GC is still borderline ok; it frees lazy programmers from the burden of doing memory management, as long as they don't get hit with related bugs.
The reason you'd use C# is reflection and widgets for game developer tools.


More specifically, stop-the-world GC (can) ruin the soft real-time requirements of a video game (in general, any computationally intensive interactive simulation). Note that computers are powerful enough and runtime technology advanced enough this is only true of games that are pushing the boundaries of what current technology can afford. Beyond this point, you are making an engineering trade-off between the convenience of GC, the performance hit and behavior of GC on your program, and manpower optimizing your program around these constraints.

And yes, C# (and other higher-level languages) serve very well in the space of creating supporting tools for games development such as level editors, assets managers, etc.

Well the biggest thing is the lack of control. If you could just control when the GC ran it wouldn't be a big deal.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2013-03-21 19:24:32
March 21 2013 19:24 GMT
#5504
On March 22 2013 04:03 CecilSunkure wrote:
Show nested quote +
On March 22 2013 02:41 Kambing wrote:
On March 22 2013 01:53 ddengster wrote:
On March 22 2013 01:26 CecilSunkure wrote:
On March 22 2013 01:14 Tobberoth wrote:
On March 21 2013 09:04 darkness wrote:
What makes C++ so famous for game development? You don't have to describe in details.

Thanks.

I've heard tons of reasons, some of them make sense, others do not. The most classic argument is that higher level languages like C# are too slow. This argument is quite weak, careful benchmarking shows that the difference is quite small nowadays, wellwritten C++ code and wellwritten C# code will often perform very very similarly.

The best reason I've heard has to do with the fact that DirectX etc is quite hard to work with effectively from higher level languages. Other than that, C++ offers a lot of flexibility which can be nice for doing larger scale optimizations.

Two words ruin C#: garbage collection.


garbage collection(GC) with respect to bad performance or?
In my opinion, GC is still borderline ok; it frees lazy programmers from the burden of doing memory management, as long as they don't get hit with related bugs.
The reason you'd use C# is reflection and widgets for game developer tools.


More specifically, stop-the-world GC (can) ruin the soft real-time requirements of a video game (in general, any computationally intensive interactive simulation). Note that computers are powerful enough and runtime technology advanced enough this is only true of games that are pushing the boundaries of what current technology can afford. Beyond this point, you are making an engineering trade-off between the convenience of GC, the performance hit and behavior of GC on your program, and manpower optimizing your program around these constraints.

And yes, C# (and other higher-level languages) serve very well in the space of creating supporting tools for games development such as level editors, assets managers, etc.

Well the biggest thing is the lack of control. If you could just control when the GC ran it wouldn't be a big deal.


Yeah, control goes into the real-time requirement which is really the problem with GC in the cases that people think of. You can control the GC to some degree, e.g., GC.collect() to force collections. With this and some careful organization of your program, you can ensure that allocations occur only when your program can tolerate the latency. However, this requires careful consideration of the program's memory footprint and still doesn't work in all cases.
mcc
Profile Joined October 2010
Czech Republic4646 Posts
Last Edited: 2013-03-21 22:00:41
March 21 2013 21:56 GMT
#5505
On March 22 2013 01:00 AmericanUmlaut wrote:
Show nested quote +
On March 21 2013 22:03 mcc wrote:
On March 21 2013 06:17 Kambing wrote:
On March 21 2013 06:02 obesechicken13 wrote:
Do any of you have any experience with regression testing?

What should it include? Wikipedia hints that regression testing may just be a small set of tests for things that have broken in the past. But what I've always done is I've run through every single feature in the test suite. What is the best practice here?

edit: f*** nvm
http://www.testingeducation.org/k04/RegressionExamples.htm
General functional regression: We retest the product broadly, including areas that worked before, to see whether more recent changes have destabilized working code. (This is the typical scope of automated regression testing.)


Many companies have the following process: for every bug fix made to the product, a test is introduced into a test suite to ensure that the bug is never reintroduced. This test suite, made from prior bug fixes, is called a regression test suite.


That seems very narrow view of regression testing. Regression testing as we used it was supposed to make sure that new changes to the system do not introduce bugs in parts of the system that were not supposed to be affected by those changes. Basically they exist to discover side-effect bugs of new changes and also errors in analysis of the new changes.

In the case of project I worked on it was a set of tests that covered all critical functions of the system. Using just tests based on previous bugs does not seem to address the issue.

That is a fairly common way of building a regression test library, though. It has a certain compelling logic to it, too: It guarantees you'll only ever have to fix a particular problem once, and it guarantees you'll invest test-writing time in components in direct proportion to their propensity to develop bugs.

I am not saying it is bad, I just think it is somewhat incomplete. It is definitely good part of regression tests. But as Kambing pointed out later it somewhat comes down to terminology.
mcc
Profile Joined October 2010
Czech Republic4646 Posts
March 21 2013 21:59 GMT
#5506
On March 22 2013 04:03 CecilSunkure wrote:
Show nested quote +
On March 22 2013 02:41 Kambing wrote:
On March 22 2013 01:53 ddengster wrote:
On March 22 2013 01:26 CecilSunkure wrote:
On March 22 2013 01:14 Tobberoth wrote:
On March 21 2013 09:04 darkness wrote:
What makes C++ so famous for game development? You don't have to describe in details.

Thanks.

I've heard tons of reasons, some of them make sense, others do not. The most classic argument is that higher level languages like C# are too slow. This argument is quite weak, careful benchmarking shows that the difference is quite small nowadays, wellwritten C++ code and wellwritten C# code will often perform very very similarly.

The best reason I've heard has to do with the fact that DirectX etc is quite hard to work with effectively from higher level languages. Other than that, C++ offers a lot of flexibility which can be nice for doing larger scale optimizations.

Two words ruin C#: garbage collection.


garbage collection(GC) with respect to bad performance or?
In my opinion, GC is still borderline ok; it frees lazy programmers from the burden of doing memory management, as long as they don't get hit with related bugs.
The reason you'd use C# is reflection and widgets for game developer tools.


More specifically, stop-the-world GC (can) ruin the soft real-time requirements of a video game (in general, any computationally intensive interactive simulation). Note that computers are powerful enough and runtime technology advanced enough this is only true of games that are pushing the boundaries of what current technology can afford. Beyond this point, you are making an engineering trade-off between the convenience of GC, the performance hit and behavior of GC on your program, and manpower optimizing your program around these constraints.

And yes, C# (and other higher-level languages) serve very well in the space of creating supporting tools for games development such as level editors, assets managers, etc.

Well the biggest thing is the lack of control. If you could just control when the GC ran it wouldn't be a big deal.

So D is the way to go
aurum510
Profile Joined July 2010
United States229 Posts
March 22 2013 03:47 GMT
#5507
On March 22 2013 03:31 Kambing wrote:
Show nested quote +
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
March 22 2013 03:56 GMT
#5508
On March 22 2013 03:31 Kambing wrote:
Show nested quote +
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)

Could you explain this dynamic dispatch thing being the backbone?
teamamerica
Profile Blog Joined July 2010
United States958 Posts
Last Edited: 2013-03-22 04:36:49
March 22 2013 04:24 GMT
#5509
On March 22 2013 12:47 aurum510 wrote:
Show nested quote +
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.


For most people who want to make indie games, why not use C#? It lets you focus on building your games story, as compared to optimizing a bunch of C++ code. I can't imagine most indie game developers are writing games that are breakneck performance. You make a tradeoff between time to finish game and performance when choosing C++ over another language imo.

edit: realize now that this was in reference to someone asking why was C++ famous for game dev. I just get tired of people going around telling someone who asks 'How do I make a game' to dive into C++, when imho they're better off starting in another language, making some games, and running into the limitations of the language themselves.

On March 22 2013 12:56 CecilSunkure wrote:
Show nested quote +
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)

Could you explain this dynamic dispatch thing being the backbone?


How else do you have polymorphism?
RIP GOMTV. RIP PROLEAGUE.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
March 22 2013 04:35 GMT
#5510
On March 22 2013 13:24 teamamerica wrote:
How else do you have polymorphism?

Oh lol, I was actually thinking of double dispatch. Sorry got confused.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
March 22 2013 11:53 GMT
#5511
On March 22 2013 13:24 teamamerica wrote:
Show nested quote +
On March 22 2013 12:47 aurum510 wrote:
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.


For most people who want to make indie games, why not use C#? It lets you focus on building your games story, as compared to optimizing a bunch of C++ code. I can't imagine most indie game developers are writing games that are breakneck performance. You make a tradeoff between time to finish game and performance when choosing C++ over another language imo.

edit: realize now that this was in reference to someone asking why was C++ famous for game dev. I just get tired of people going around telling someone who asks 'How do I make a game' to dive into C++, when imho they're better off starting in another language, making some games, and running into the limitations of the language themselves.

Show nested quote +
On March 22 2013 12:56 CecilSunkure wrote:
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)

Could you explain this dynamic dispatch thing being the backbone?


How else do you have polymorphism?

there is static polymorphism.
conspired against by a confederacy of dunces.
Kambing
Profile Joined May 2010
United States1176 Posts
March 22 2013 13:04 GMT
#5512
On March 22 2013 12:56 CecilSunkure wrote:
Show nested quote +
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)

Could you explain this dynamic dispatch thing being the backbone?


Dynamic dispatch --- method overriding --- is typically considered the "heart" of OOP because it is the most unique and essential feature of the language paradigm. Other features of OOP can be easily emulated in other language paradigms e.g., classes as records, inheritance as (explicit) record subtyping, or are not essential, e.g., the lack of classes in prototype-based programming languages such as Javascript. However, the mechanism of dynamic dispatch are both non-trivial and present in every OO language.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2013-03-22 13:13:18
March 22 2013 13:11 GMT
#5513
On March 22 2013 12:47 aurum510 wrote:
Show nested quote +
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.


C# is perfectly fine for many games that someone would like to make. For Crisis, Farcry, etc., it is likely not appropriate but that is only a tiny subset of games out there.

Dynamic dispatch does require a non-trivial performance penalty (the cost of a pointer indirection), but that isn't necessarily a prohibitive cost. And in fact, C# does the "right" thing like C++ and only has opt-in dynamic dispatch via the overrides keyword.

Besides (stop-the-world) garbage collection ruining soft real-time guarantees, the primary performance benefit that C++ provides is explicit memory layout (rather than management). In Java (and to a lesser extent, C#), you do not have direct control over how objects are laid out in memory, for example contiguously or via indirect pointers or on the stack vs. on the heap. These sorts of considerations in C++, when properly tuned, can lead to significant performance gains over higher-level languages.
aurum510
Profile Joined July 2010
United States229 Posts
Last Edited: 2013-03-22 13:32:36
March 22 2013 13:21 GMT
#5514
On March 22 2013 20:53 nunez wrote:
Show nested quote +
On March 22 2013 13:24 teamamerica wrote:
On March 22 2013 12:47 aurum510 wrote:
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.


For most people who want to make indie games, why not use C#? It lets you focus on building your games story, as compared to optimizing a bunch of C++ code. I can't imagine most indie game developers are writing games that are breakneck performance. You make a tradeoff between time to finish game and performance when choosing C++ over another language imo.

edit: realize now that this was in reference to someone asking why was C++ famous for game dev. I just get tired of people going around telling someone who asks 'How do I make a game' to dive into C++, when imho they're better off starting in another language, making some games, and running into the limitations of the language themselves.

On March 22 2013 12:56 CecilSunkure wrote:
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)

Could you explain this dynamic dispatch thing being the backbone?


How else do you have polymorphism?

there is static polymorphism.


Yes! This is what makes C++ very useful for performance. You can still use OOP, but there are no run-time checks. It's very important.

[Edit]: To be fair, C# has similar abilities for only using dynamic dispatch when told to do so.
aurum510
Profile Joined July 2010
United States229 Posts
March 22 2013 13:31 GMT
#5515
On March 22 2013 22:11 Kambing wrote:
Show nested quote +
On March 22 2013 12:47 aurum510 wrote:
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.


C# is perfectly fine for many games that someone would like to make. For Crisis, Farcry, etc., it is likely not appropriate but that is only a tiny subset of games out there.

Dynamic dispatch does require a non-trivial performance penalty (the cost of a pointer indirection), but that isn't necessarily a prohibitive cost. And in fact, C# does the "right" thing like C++ and only has opt-in dynamic dispatch via the overrides keyword.

Besides (stop-the-world) garbage collection ruining soft real-time guarantees, the primary performance benefit that C++ provides is explicit memory layout (rather than management). In Java (and to a lesser extent, C#), you do not have direct control over how objects are laid out in memory, for example contiguously or via indirect pointers or on the stack vs. on the heap. These sorts of considerations in C++, when properly tuned, can lead to significant performance gains over higher-level languages.


I meant more the necessary runtime checks to look up the method in the vtable (while still technically O(1), it's not nice to look something up in a hashtable, as it requires some calculations to get the hash).

But it's true that it's not very bad, as you say (specifically for games, and less for systems where performance is crucial).
Kambing
Profile Joined May 2010
United States1176 Posts
March 22 2013 13:57 GMT
#5516
On March 22 2013 22:31 aurum510 wrote:
Show nested quote +
On March 22 2013 22:11 Kambing wrote:
On March 22 2013 12:47 aurum510 wrote:
On March 22 2013 03:31 Kambing wrote:
On March 22 2013 02:53 aurum510 wrote:
On March 22 2013 02:48 Kambing wrote:
On March 22 2013 02:44 aurum510 wrote:
Two more words ruin C#: dynamic binding


Eh, dynamic dispatch? Or type dynamic?


Now that you mention it, both!


What's wrong with them? Dynamic dispatch is the backbone of object-oriented programming. If dynamic dispatch ruins C#, then you surely don't like OOP*. Type dynamic is an interoperability feature with dynamically-typed languages and only has an effect on your programs if you opt into its services.

(*To be fair, I don't like OOP either.)


The context was meant that C# should not be used to make games (or anything that requires performance as a significant concern). Dynamic dispatch requires a lot of overhead during run-time. C++ uses only static dispatch unless specified with the virtual keyword.


C# is perfectly fine for many games that someone would like to make. For Crisis, Farcry, etc., it is likely not appropriate but that is only a tiny subset of games out there.

Dynamic dispatch does require a non-trivial performance penalty (the cost of a pointer indirection), but that isn't necessarily a prohibitive cost. And in fact, C# does the "right" thing like C++ and only has opt-in dynamic dispatch via the overrides keyword.

Besides (stop-the-world) garbage collection ruining soft real-time guarantees, the primary performance benefit that C++ provides is explicit memory layout (rather than management). In Java (and to a lesser extent, C#), you do not have direct control over how objects are laid out in memory, for example contiguously or via indirect pointers or on the stack vs. on the heap. These sorts of considerations in C++, when properly tuned, can lead to significant performance gains over higher-level languages.


I meant more the necessary runtime checks to look up the method in the vtable (while still technically O(1), it's not nice to look something up in a hashtable, as it requires some calculations to get the hash).

But it's true that it's not very bad, as you say (specifically for games, and less for systems where performance is crucial).


Yeah, my pointer indirection comment is about the runtime cost of method lookup. No hashing is required for a vtable in a (traditional, receiver-based) OO language as the name of function you want to lookup at runtime is known at compile time. This amounts to compiling the method invocation down into a lookup of the vtable at the particular offset that contains the method you want.

(In the case of reflection, you do need some more complicated lookup scheme like a dictionary as you need to essentially perform the "hashing" of the function name-to-vtable entry computation at runtime.)
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
March 22 2013 21:09 GMT
#5517
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.
heishe
Profile Blog Joined June 2009
Germany2284 Posts
March 22 2013 21:11 GMT
#5518
On March 23 2013 06:09 Recognizable wrote:
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.


Just wait until you learn a functional language.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
Holy_AT
Profile Joined July 2010
Austria978 Posts
March 22 2013 21:13 GMT
#5519
On March 23 2013 06:11 heishe wrote:
Show nested quote +
On March 23 2013 06:09 Recognizable wrote:
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.


Just wait until you learn a functional language.


I'd skip them and start directly with OO
tehemperorer
Profile Blog Joined June 2010
United States2183 Posts
March 22 2013 21:19 GMT
#5520
On March 23 2013 06:09 Recognizable wrote:
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.

String Float = new String("true");
Knowing is half the battle... the other half is lasers.
Prev 1 274 275 276 277 278 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 5h 11m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
-ZergGirl 152
RuFF_SC2 103
StarCraft: Brood War
Britney 2708
Rain 1832
GuemChi 1293
Zeus 318
Leta 155
Dewaltoss 111
Snow 82
sorry 67
yabsab 23
Icarus 4
League of Legends
JimRising 772
Reynor68
Super Smash Bros
hungrybox599
Other Games
summit1g10046
PiGStarcraft382
Livibee176
Maynarde138
Organizations
Other Games
gamesdonequick481
[ Show 13 non-featured ]
StarCraft 2
• mYiSmile19
• Letter144
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• Pr0nogo 3
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2150
League of Legends
• Stunt511
Upcoming Events
Kung Fu Cup
5h 11m
The PondCast
1d 4h
Replay Cast
1d 18h
Korean StarCraft League
2 days
CranKy Ducklings
3 days
GSL
4 days
Yamato Cup
4 days
Replay Cast
4 days
Afreeca Starleague
5 days
WardiTV Weekly
5 days
[ Show More ]
Sparkling Tuna Cup
6 days
Afreeca Starleague
6 days
PiGosaur Cup
6 days
Liquipedia Results

Completed

Super Anchor Qualifying S3
Blizzard Classic Cup 2026
Big Dog Cup 2026 Div 1

Ongoing

ASL Season 22
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - GSA
Calamity Invitational
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5 - GSB
Acropolis #5 - GSC
BSL Season 23
SC4ALL II: Brood War
BSL 23: Non-Korean Championship
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Custodian Cup
Copium Cup
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #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 © 2026 TLnet. All Rights Reserved.