16

Bind learning c++ chapter 3

Fuck whoever says that java is easier than c++. If i populate memory i can just fucking clean it out. I have access to the literal fucking stack my code runs on. I can integrate assembly. I can fucking make my program run in -3 seconds for fucks sake, this is so much easier than java where i have to fuck around with scopes to nudge the gc to start cleaning up and i need a separate engine to access jasm code.

Comments
  • 2
    I don't know C++, but I approve the java part, I fucking hate that language -.-
  • 2
    @gitpush i hate you too
  • 1
    @BindView meh haters gonna hate :3
  • 2
    @gitpush heaters gonna heat
  • 1
    Feel the POWER!
  • 0
    Ive worked a lot with java and also hate how little control you have over memory related shit I had written a math lib for a game framework I had been making for Android but on Android you can't force call the GC and it would stutter the game each time it ran which was whenever it wanted so I ended up redoing my math lib passing everything as references to arrays and writing to referenced arrays as the return value just to prevent floats from being allocated in memory so the "stop the world" GC stutter wouldn't be there. Then I got to strings for UI stuff and couldn't do anything about those :/
  • 0
    @BindView they better do, it is not funny keeping us freezing lol
  • 0
    @hexc you can actually control the gc but it takes a lot of effort for minimal gain
  • 0
    @BindView hm on Android? I know is used to work but the method the have exposed in the API didn't seem to do fuck all. Regardless though when youre aiming for silky smooth animation, calling the GC at any time is not ideal so I had taken the no allocation aproch but stupid strings if they need to update you can't just recycle there memory :(
Add Comment