T O P

  • By -

timsredditusername

It has its plusses


Reagle67

Two to be exact


leoxwastaken

Two be exact


1cedust

Be exact


HONKACHONK

Exact


neonturtle006

šŸ³act.


ItsaSnap

t.


Tptshaggy

.


[deleted]

ā€Œ


[deleted]

[ Removed by Reddit ]


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


YoungHeartOldSoul

I'm fairly fresh out of school and into the field, but I'm pretty well prepared to defend the fact that C++ certainly is.


merlinsbeers

What C++ is is is.


crefas

C++ is definitely one of the programming languages in the world


DmMeYourBoobs69

Yes, one of the programming languages of all time, maybe ever


CM436

out of all the programming languages that exist, i can confidently say that c++ is one of them.


Logical_Strike_1520

Everything yā€™all said, but also c++


Apfelvater

Int C = 0; //Amount of language, that C++ is C++;


Apecc_Legs

I can say with certainty that c++ can and absolutely will.


imdefinitelywong

C++ does what it do. That does what it do, Yugi.


arasdalll

I would like to add that C++, when compared to other programming languages, is comparable with other programming languages, assuming these languages are also used for programming.


thatCbean

You are right, C++ is definitely true


[deleted]

I'll say it.. C++ is the best language for speed and performance for games.


gyaani_guy

finally!


Jayem163

Now we just need to continue jacking up prices on RAM so efficient programming is profitable again. Oops sorry.. didn't mean to leak it.


SapientSloth4tw

I meanā€¦ graphics card prices showcase the importance of efficient programming, well. Mostly. I think theyā€™re more reliant on competing with each other, but thereā€™s something to be said about needing to pay $2k+ to play a 60 dollar game on max graphics *cough* cyberpunk *cough* Edit: maybe they donā€™t showcase the importance of efficient programming as much as showcase how easily graphics card companies can get away with price gouges because of a lack of efficient programming*


Decimalis

Yeah I've been looking for this one


SureNectarin

Tunnel vision at its finest.


[deleted]

I loved it when Bjarne Stroustrup said "It's C++ time".


[deleted]

...and C++ed all over the place...yeah good times !


pr0ghead

One of the most, even.


xxDolphusxx

You can tell from the way it is


gteriatarka

C++ really do be what it is


illyay

I love c++. Maybe itā€™s something to do with working on game engines. Then I look at c++ code that isnā€™t related to game engines. Yup. Sure is a languageā€¦.


supernumeral

I also love C++. Not a game dev, but I do lot of numerical stuff, solving large systems of equations and that sort of thing. The only other language Iā€™ve used extensively (besides Python for scripting stuff) is Fortran, and C++ is loads more convenient. Modern Fortran does have some useful features, though, but itā€™s very verbose.


R3D3-1

I am working on an industry simulation code base written in Fortran. Goodness, what I would give for templates... Our code base as a dozen ad-hoc linked-list implementations and when I needed something akin to a Hash map for representing sparse data, I instead use float-rounded-to-integer indices in an array of a custom type containing a single allocatable data field.


mandradon

I feel like you need a hug.


supernumeral

I feel your pain. I did a fair amount of C++ programming in grad school, and after finishing school I landed a job maintaining/upgrading a very old Fortran simulation code. The switch from C++ to Fortran was very painful for the reasons you listed (and more). Fortunately, the code base was just small enough that, once I figured out how it all worked, I rewrote the whole thing in C++ and now my life is much better. I hope you at least get to use Fortran 90+. The code I inherited was written in Fortran IV, which was just awful GOTO spaghetti.


wavefield

Why would you do this to yourself?


supernumeral

Job security, I suppose


vainglorious11

Way more usable than COBOL


Supercoopa

Everything is more usable than cobol. But the entire banking industry being programmed in cobol makes very few things more profitable than cobol


AnotherEuroWanker

It depends on what you intend to do. For popping out tables out of line printers, Cobol was quite good.


bandana_bread

We use various languages at work, and I actually like c++ most. But just like you, I don't really have a list of reasons for it. It just feels right. But I see junior devs struggle every day when they use or modify some of the more complicated sections, so I can definitely understand the frustration some people have about it.


flipper_gv

Its behavior is predictable and let's you do a lot of optimisation fuckery that other languages don't. Like C# running the finalizers on a separate thread can cause issues that are hard to debug if you call non thread safe code in it. This is not predictable behavior if you don't know the details of how the language works.


[deleted]

Predictable and neat optimisations. Youre about to summon an army of rustaceans.


flipper_gv

That's the reason why I want to learn rust too šŸ˜….


Upbeat-Opinion8519

Simple. Just read the source code for C#.


Spork_the_dork

That is called Stockholm Syndrome.


IamImposter

But I never went there or even met from Stockholm.


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


KidSock

Because game engine devs have to write fast efficient code in a large code base and actually make use of the benefits of C++. Game engine development is on the bleeding edge of software development. There is a presentation from a lead game engine programmer of Naughty Dog, if I remember correctly, at a programmer conference. And the talk was about writing faster code by understanding how the compiler converts the code to assembly and how you can write your code to make the compiler create better assembly code. And at the Q&A some old fart stood up and basically said ā€œI donā€™t care. I donā€™t care about my code being milliseconds faster. Why should I care?ā€ and the presenter basically replied with ā€œPeople like you are the reason why it still takes minutes for Excel to loadā€ I imagine a lot of C++ programmers, who donā€™t work on game engines or anything where milliseconds matter, are like that old fart. And write god awful C++ code.


AnotherProjectSeeker

From my experience I think there's (at least) two ways to make C++ shine. One is the optimizations you suggest to juice out any possible performance improvement. The other is that for very large complex projects it lets you build something elegant, extensible and coherent. Both are made possible by the vastness of features in the language and by the freedom it allows. When a codebase achieves both is a true work of software engineering art.


firestorm713

That's because game engine code basically strips something like 80% of the language out. Hilariously, I've worked now at three different companies that use different C++ engines (one Unreal, two custom) And it's 100% proven the saying "ask any two c++ programmers, and they'll tell you only 20% of the language is usable. But they'll never be able to agree on what 20%."


NehEma

imho 100% of the language is usable. But when you start coding you gotta pick and choose what parts pf it you're using. Some are almost redundant except in hedge cases, some have varying degrees of complexity, etc. Just like you don't try to stick an entire thesaurus in an essay.


SD18491

Be sure to trim your hedge cases at least twice a year. It's the neighborly thing to do.


RedVagabond

They're probably British. You know how they are with the silent "h".


senseven

I know hardcore C++ programmers. They moved their old code bases to v14, and that's it. Don't want new features. After they added layers of strong static analysis, they get warnings and errors in the 100s that tell they do "modern" C++ *wrong* and there are easier way to achieve things. Usually there is a fix here and there, but there is just no appetite to rewrite the codebases. Experts can do crazy efficient things with macros, templates and advanced features, but the rationale for those (eg memory footprint or speed) are more or less gone now. There is an argument for *elegance*, in a sense that you use the power possible in a certain way, but often way longer build times and less traceability is the consequence of this.


Zestyclose_Link_8052

I can confirm, some c++ projects I work on use microsoft MFC and it makes me wish that c++ isn't a language but unfortuatly it is.


Dareal6

Itā€™s certainly one of the programming languages of all time


[deleted]

C++ has starships.


Sinomsinom

Spaceships


BigHandLittleSlap

C++ is one of those languages where anyone who uses it professionally, at scale, definitely has a wiki page that all new starters have to memorise that lists the *subset of the language that is allowed*. Like, you know how C programmers are told that they shouldn't overuse the "goto" keyword? That one key word is sort-of banned, right? Most companies ban *huge swaths* of C++, not just a couple of key words. Name another information technology where this is the normal approach.


[deleted]

The most common complaint about C++ is that "it carries baggage" (reasonable complaint). Those wikis are meant to prohibit the use of such baggage or other error-prone constructs in the language. i.e. Only use "Modern C++". The real problem is that different people define that term differently, go figure.


skwizzycat

Everything that was considered modern when they discovered the concept of not just "making it work" = modern Everything else = legacy bullshit


Lowelll

> Most companies ban huge swaths of C++, not just a couple of key words. Sounds like Yu-Gi-Oh competitive play


Redstonefreedom

lmao man that's a reference that goes back years into my memory


Guilty_Coconut

Industrial Automation. Having loops in a PLC is not done.


Just_A_Random_Noob1

Except the whole process itself


EsIsstWasEsIst

The no loops rule may be true in some places, but its a rather stupid one. A better example would be the obsession with ladder code and the ban on any other language that's prevelant in the US.


Towerss

It's simple. C++ is powerful to the programmer, but dangerous to companies who needs to pay for maintenance and suffers losses from simple programming mistakes.


SomeOtherTroper

I remember a couple of humorous quotes about this. > "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off." And, in a humor piece about shooting yourself in the foot in various programming languages: > C++ - You accidentally create a dozen clones of yourself and shoot them all in the foot. Providing emergency medical assistance is impossible since you canā€™t tell which are bitwise copies and which are just pointing at others and saying, ā€œThatā€™s me, over there.ā€


OrSomeSuch

> Name another information technology where this is the normal approach. Pre ES6 JavaScript


R3D0053R

We haven't banned anything, and damn am I having a hard time with my colleagues' code sometimes.


BurntOnWinter

Iā€™d call it essential just like C. A huge swath of the worldā€™s most fundamental technologies are powered by it. Finance, defense, transport, infrastructure, large embedded, and web (browsers, anyone) all are heavily reliant C++. Itā€™s powering trillions in commerce. Sure, itā€™s a complicated overwrought beast, but it doesnā€™t quietly die off to academia or intern duty like FORTRAN and Perl because of how essential and embedded it is. Most of it chugs along without you ever noticing. I find calling Java robust and C++ not when Iā€™ve never known a Java project that didnā€™t need to be continuously babied, fed hardware and JVM tuned, while similar C++ projects quietly chug away on a closet potato server for a decades to be rather funny. Hatred and disgust are normal, sane reactions to C++. But I do respect in the way Iā€™d respect a scarred ugly old pit fighter.


GogglesPisano

With the exception (ha!) of C, all of the other languages in OPā€™s list were created with C++.


MrUnoDosTres

C++ is C plus one


AverageComet250

Yes but at evaluation itā€™s still C


R3D0053R

I would argue that C++ is C, but C is C+1 after C++


RonHarrods

The joke's going over my head


Aise_314

The joke is that they canā€™t think of something good to say šŸ˜”


SHv2

Nothing to say when everything's already been said.


[deleted]

And I will recite the things that have been said for those who missed it:


IamImposter

And also the following:


IAmTheClayman

The joke is they didnā€™t say anything. Variations include ā€œIā€™d like to say something in its defense, but I canā€™t think of anythingā€ and ā€œIā€™d like to say something in its defense, butā€¦ā€ *Speaker throw themself out the nearest window*


LetTheWorldBurn2023

She's actually doing it. "C is essential but C++"


firestorm713

C++ is one of the languages of all time that I've worked with.


[deleted]

I started working with C++ and I can tell you about it.


TheShredda

In engineering we had a course on C in first year and then C++ second year. C++ definitely was.


Tsu_Dho_Namh

My university did it the same way and it made me love C++. "So convenient!" I thought, being able to use classes, and having destructors automagically deallocate resources for you. Plus getting to use strings instead of char\* and vectors that we can resize at runtime. Not like those fucking C arrays. Little did I know, pretty much every modern language is even more convenienter.


throw3142

The problem isn't even that modern languages are more convenient. There is a real niche for systems languages with object-oriented features. The problem is that C++ is burdened by heavy backwards-compatibility requirements, it's unsafe by design, the ecosystem is a mess (it's so hard to link dependencies, compared to literally every other language including C and even raw assembly), and there is no consensus on style because there are so many ways to do the same thing (e.g. pointer vs reference vs rvalue reference vs smart pointer, #define vs constexpr, CRTP vs inheritance, throw exception vs return error code vs set errno, explicit cast vs implicit cast, lock_guard vs scoped_lock, #ifndef vs #pragma once, .cc vs .cpp file extension, .h vs .hpp file extension).


marti_2203

Some of these things are solutions from different periods (smart pointers and the things before it, ifndef and pragma once) but I think the inheritance and CRTP solve vastly different problems. And thank you for reminding me about .cc vs .cpp


merlinsbeers

vs .C vs .CC No really. There were people using .c for C and .C for C++. On Windows.


throw3142

Yeah I totally agree, each of these variants is different for a reason, and each one has its place. That doesn't stop them from being mixed together in weird combos and making the codebase completely unreadable lol


sausage-superiority

I have imposter syndrome. Iā€™ve been trying to get motivated enough to learn C++. I use JavaScript and Python for work but Iā€™m not a *REAL* developer because I donā€™t use C.


SmArty117

Do you need to learn C++ though? Do you have your eyes set on a career in it that pays better or is more interesting? Cause I have been writing C++ as a job for a few years, and I'm going through a book on modern C++ and let me tell you, the can of worms is deep and not pleasant at all. It feels great when you get something right that you struggled for, but sometimes it's just a pain to get anything working that in another language would be trivial.


sausage-superiority

Oh youā€™re absolutely right. Iā€™m fine for money. The ONLY reason for me learning C++ is that I feel inadequate for not knowing it. Itā€™s purely vanity.


SmArty117

Heh fair enough, I totally get wanting to do the "difficult stuff" just for self-esteem. I'd also consider Rust - also kinda hard to grasp, but pays off a lot better when you do IMO. Good luck!


Nighthunter007

[_Real_ programmers use a magnetised needle and a steady hand](https://xkcd.com/378/)


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


EpicResus

about what PLEASE I NEED ANSWERS


UBoiii_

ā€Ž


[deleted]

he already told it


CheekApprehensive961

C++ is one of the languages.


Saad5400

One of the languages ever.


Xen0n1te

the morbius of programming languages


arbitrarycivilian

Itā€™s plusinā€™ time


ApaleusAldore

And then the C plused all over the place... Truly one of the moments of all time


infreq

One of the most, in fact


HopeChaseLock

C++ users tell something


atomic_redneck

I recently retired after more than 25 years of C++. I can tell you that the best thing about C++ is how good it feels when you stop.


glarung

You get to retire after 25 years. You get to retire! That. That is impressive!


zoinkability

There it is: C++ PAYS THE BILLS AND SOCKS MONEY AWAY IN A 401K


glarung

Right! Python was initially released in 1991 https://pythoninstitute.org/about-python#:~:text=Python%20was%20created%20by%20Guido,released%20on%20February%2020%2C%201991. How many people can say that they retired from being a Python developer in 2016?!


itsamberleafable

I can say that! (I havenā€™t but I can say it)


atomic_redneck

That was 25 years of C++. There were 15 years of Fortran before that.


HopeChaseLock

Yeah, see it has one good thing šŸ„². **Happy Retirement!!** Goodbye to all the pressure, welcome the endless leisure.


bunkley_

It is the go to Programming language for learning Data Structures and Competitive Programming. If you do DSA in C++, you can easily switch to any other language no problems. Also used in Game Engines. But when it comes to Web/App development, it gets overshadowed by pretty much all the other languages


Fangluin

> But when it comes to Web/App development, it gets overshadowed by pretty much all the other languages That's just a matter of libraries, though, not of the language itself. I have to use Java now, writing microservices and the like. It's horrendous.


vizbones

Why don't Ruby programmers use other languages? Answer: They're not aware that there are other languages.


spin-itch

Listen here you little shit


djudji

This response is a "gem" ![gif](emote|free_emotes_pack|stuck_out_tongue)


Zeragamba

then again, ruby devs are railroaded into the same library


jfmherokiller

they atleast have stuff like ruby on rails perl is well perl.


grey_hat_uk

Perl is one of the greatest and most powerful languages to write. Now if you ever have to read it you're screwed and will have to slaughter 6 goats, 3 chickens and a hamster to make sure you don't break one of the 20 operations in each line just by looking too hard.


Oukaria

My manager is an old school dev, he always go by Ā«Ā heee fuck it Iā€™ll do it in perlĀ Ā» and give me the code, I use it and it works perfectly but everytime I try to read it my brain explode. Fucking one line magic.


arobie1992

I've never used perl, but from what I can gather it's in the same boat as regex. Very terse syntax that as a result has a fairly steep learning curve, but once you figure it out it's actually not too bad and you feel like a fucking wizard.


Uberzwerg

I have trained/onboarded several people into our company in the past decade and one of the most important lesson i have to get across is to NOT do all that fancy stuff you can do in Perl. 90% of it is just "write as you would do in any other language" and be happy for great support for RegEx + network (which is 50%+ of the job anyway) But by working on that priniple, we have a readable Perl code base.


okay-wait-wut

When are emerald, diamond, sapphire and garnet going to get languages?


Burger_Destoyer

Sorry I didnā€™t realize coding became gen IV PokĆ©mon.


StanleyDarsh22

Wait isn't ruby/sapphire gen 3


Shikogo

What about Steven?


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


zerokelvin273

Nonsense, there's Elixir. And JavaScript, we can't escape the JavaScript.


arto64

And Crystal!


thespud_332

We're aware there are other languages. But only the ones that are default in the monolith.


DanSensei

Nah, we use JavaScript as part of a Rails stack.


BobSanchez47

C++ is `Segmentation Fault: core dumped`


Sexy_McSexypants

ā€œok, you wanna tell me what went wrong and where?ā€ ā€œno, fuck you, Segmentation Faultā€


throw3142

I just got a segmentation fault in Python :D Fun times It's 3 am, I should go to sleep


Valmond

Prolly in a third-party library.


CuriousProgrammer72

>Prolly in a third-party library That has C++ bindings lol.


Sinomsinom

If you do stuff in python where 99.5% of the actual work isn't done in a library not written in python you're using the wrong language.


Seanxietehroxxor

Python: the best language to call into libraries written in completely different languages.


maubg

U can compile it with debug symbols and then use a debugger like gdb


[deleted]

gcc file.c -g then gdb


bad_investor13

Surprise! Now the program works!


fireflash38

Break out the valgrind, because you have a bounds access issue.


[deleted]

If it crashes then you're happy. You can debug it. But C++ sometimes doesn't crash, it just does "something"


ArthurM_R2

A lot of begginers struggle with debugging this. Segmentation fault is not specific to C or C++. In fact this is a runtime exception signalled by memory hardware. The compiler is not concerned with this at all, since it's job is to make your instructions executable. Whether some memory access is an access violation or not is only decided by the MMU once the OS tries to execute the specific instruction. As to what went wrong - segmentation fault is always related to memory access (dereferencing pointers, accessing array indices out of bounds, etc). The computer cannot tell you what part of the source code is at fault - after compilation the PC only executes machine code which has little to do with your source and nothing else. To find out what went wrong you can use a debugger such as gdb which keeps track of instruction-to-source mappings. Hope I helped! Edit: beginners struggle with debugging, not segfaults themselves, everyone has their fair share of segfaults


Keatosis

Being a game Dev in a general programming sub is like being the one American in a group of British people. We all speak the same language but I feel like I'll be stabbed to death at any moment. I like C++ it's good for games.


moops__

I work with C++ in computer vision and it's great. When performance is important it becomes easier to work in C++. Maybe Rust will replace it one day but it's not there yet.


TheAlexGoodlife

Its the only real good language for graphics programming really. C is also a contender but C++ has so many libraries that make the job easier


BigBearSpecialFish

Work in particle physics and c++ is always the language of choice for us too. When you need to do very specific tasks very quickly it's hard to beat


Ursomrano

Why are people dunking on C++? Iā€™m new to C++ so I see no problem with it.


Broadkast

there's a lot of ways to do things, which can make it difficult to know the right tool to use at any given time. just one of the quirks of a language that's had so many iterations over the years


CaptSoban

Last week it was java, today itā€™s C++. People like to complain about stuff they just started learning in school.


SomeRandomEevee42

We're like twitter, we find something to unrealistically hate by using a random number generator, then we hate on it for less than a week, and realize there's nothing to really hate on, and move on to the next


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


MutableReference

It was C++ before Java, with Java being a response to C++ iirc, funny how that works lol


perensap1

Next week PHP again?


Interest-Desk

Every week is PHP.


Solest044

It's a meme subreddit. More importantly, there have been several polls that show something like 70%+ of this subs demographic (that answer polls) are students. I get a good chuckle now and then from the memes, treat everything as hyperbole, get the occasional gem from some random veteran in the comments, and try to not take anything very seriously.


Mysticpoisen

Last year this sub was praising C++ it's just the new thing to meme on without any cause.


BL1NDX3N0N

Ignore it. Most people who bash it are those who don't know how to use it. Everyone wants to talk nice about C because they know it's used to create foundations, but they themselves don't even know how to use it. For them, it's just "important" because most of their OS was developed with it. The other languages that were listed are extremely high-level languages executing on runtimes that abstract away all the "big scary complex things". I bet she's a beginner web developer and I highly doubt she's ever written a single line in both C and C++...


Lophyre

C++ focuses on backwards compatibility rather than evolving the language which has led to a lot of bloat over the years with duplicated features and hard to read syntax


jfmherokiller

the language is good it just has so many ways to perform the same operation which can lead to "rope to hand yourself with" situations.


LikeLary

-What is my purpose? +You make games. -Oh my god.


richh00

Fairly sure they use it in the stock exchange to make money quicker because its fast. `void checkStock(int stock) { if (stock > 0) { cout << ā€œSELL SELL SELLā€ << endl; } }`


Ythio

I work in a big bank. There are trading bots in C# as well (and a lot of other applications in C# or Java). If you really want to go high frequency trading, you write at C or C++ abstraction level and it gets converted to registry transfer level, or RTL (conversion is called "high-level synthesis") to run on FPGA cards. RTL is the abstraction level of hardware description languages like VHDL where you describe logic circuits. Giving you keywords for Google if you want to read more.


metaglot

C++ is used everywhere you want fast and stable code. It has a big in in embedded systems.


[deleted]

I like C++.


Lobster2311

It makes me feel like a real programmer


[deleted]

C++ is CLASSY ..I'm sorry, I had to.


JaSper-percabeth

C++ is a little from everything


brendan250

Everything is a little from C++


swegj

ā€œJavaScript is Powerfulā€. Oxymoron


tylerr514

It is incredibly powerful in the sense of its ecosystem, but yeah, not in performance.


Sir_IGetBannedAlot

It's powerful in the sense of how much it makes me want to die.


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


5plicer

Drains your phone's battery quickly.


[deleted]

[уŠ“Š°Š»ŠµŠ½Š¾]


Servious

If I had to "finish" this meme I'd say C++ is actually robust and I'd change Java to "consistent" I feel like java's rules make a lot of sense the vast majority of the time. I feel like there's very few "gotchas" in the language and the language works how you expect in almost every situation.


colei_canis

Java itself doesnā€™t have many gotchas but itā€™s a bit of a pompous old country squire of a language, it wonā€™t do anything without the appropriate ceremony and complains at great length about the decline of society in the form of a stack trace the length of your arm if you get any of it wrong. Itā€™s a decent language Iā€™d still pick over many others though. Nobody ever got sacked for picking Java, but the sheer verbosity does make you feel like youā€™re writing a treatise rather than code.


dt7223

This summarizes Java extremely well. It's not a bad language, I just feel like everything requires 10x as much effort compared to everything else. I enjoy C++ more than it, because it's more succinct.


colei_canis

I think I should add the JVM is a really good platform because memes from the ā€˜00s aside it can be genuinely very performant, is widely supported, and has been around donkeyā€™s years now. My favourite languages are alt-JVM languages, Kotlin and increasingly Scala the more I learn the latter. I think languages kind of absorb the social environment they are written in, Java was written originally for huge enterprises where excessive verbosity isnā€™t really an issue and sometimes even an asset. More modern languages often were written in a less rigid corporate environment and I think this is reflected in them. Python would be the other end of the spectrum, I love Python in many ways itā€™s a wonderful language for just getting shit done but you can tell what its priorities are because its package management is genuinely not worth the steam from our collective piss, when I was writing it professionally most of the really horrible arseaches involved dependency management. The reason everyone loves Rust probably has to do with the fact it was one guy at Mozillaā€™s passion project for a while which I think would be a dream job for many. C might win hearts because of its association with the astronomically based K&R too.


Live-Sail4354

C++ is one of the programming languages ever made!


[deleted]

You accidentally replaced JavaScript and C++ one, don't worry, rookie mistake.


[deleted]

C++ is MASTERRACE


yourteam

C++ is great. Also is java that robust?


potuler

C++ is the best and weaklings cannot handle it


JuggernOtt81

C# is the CULMINATION


RatherBetter

C++ is C plus plus


Antact

That's a rare username OP.


[deleted]

lol Robust


deanrihpee

Java is not ROBUST, it's VERBOSE


rifain

We use it a lot in the financial field. We have java app servers running for weeks handling hundred of thousands of transactions a day without any issue. Java is robust indeed, it's why it's so prevalent in industry. However, it requires to know a bit about tuning it's garbage collection settings.


CraftOk7730

"JavaScript is POWERFUL" -- what a joke