[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Is C++ a meme?

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 20
Thread images: 5

File: cplusmeme.png (1MB, 1357x1281px) Image search: [Google]
cplusmeme.png
1MB, 1357x1281px
Hey /g/,
so I've been learning some C++ recently and kinda enjoy it. But is it a meme? Is it even worth learning?

Pic related
>>
yes everything is a meme
nobody does anything for any reason other than to be ironic and show off on the internet for meme points

You mean there actually exist people who do things out of sincerity and not because they want 5 minutes of attention?
HOW COULD THIS BE???
>>
File: this is 4chan now.png (66KB, 997x775px) Image search: [Google]
this is 4chan now.png
66KB, 997x775px
>>
>>60434030
>Is it worth learning?
No, it's a garbage language for SJWs, leftist hipsters and people who cannot program in assembly. Avoid if you have any sense of self worth.
>>
Learn rust instead
>>
>>60434030
It's useful to know since so much stuff uses it.

There are better languages but probably no other languages as well supported, and that to me trumps just about any advantage another language could have when used in any position beyond hobby projects.

And unlike Java, the best practices aren't super fucking retarded.
>>
File: THINKING EMOJI.png (53KB, 256x256px) Image search: [Google]
THINKING EMOJI.png
53KB, 256x256px
>>60435816

template <class E, class = std::enable_if_t<is_expression_v<E>>>
inline auto operator!(E&& e) -> not_expression<make_expression_result_t<E>> {
return {make_expression(::std::forward<E>(e))};
}

template <class E, class = std::enable_if_t<is_expression_v<E>>>
inline auto operator*(E&& e) -> zero_or_more_expression<make_expression_result_t<E>> {
return {make_expression(::std::forward<E>(e))};
}

template <class E1, class E2, class = std::enable_if_t<is_expression_v<E1> && is_expression_v<E2>>>
inline auto operator|(E1&& e1, E2&& e2) -> choice_expression<make_expression_result_t<E1>, make_expression_result_t<E2>> {
return {make_expression(::std::forward<E1>(e1)), make_expression(::std::forward<E2>(e2))};
}

template <class E1, class E2, class = std::enable_if_t<is_expression_v<E1> && is_expression_v<E2> && !(is_terminal_v<E1> && is_terminal_v<E2>)>>
inline auto operator>(E1&& e1, E2&& e2) -> sequence_expression<make_expression_result_t<E1>, make_expression_result_t<E2>> {
return {make_expression(::std::forward<E1>(e1)), make_expression(::std::forward<E2>(e2))};
}

template <class E, class = std::enable_if_t<is_expression_v<E>>>
inline auto operator<(E&& e, semantic_action a) -> action_expression<make_expression_result_t<E>> {
return {make_expression(::std::forward<E>(e)), ::std::move(a)};
}

template <class E, class = std::enable_if_t<is_expression_v<E>>>
inline auto operator<(E&& e, syntax_action a) -> capture_expression<make_expression_result_t<E>> {
return {make_expression(::std::forward<E>(e)), ::std::move(a)};
}


>the best practices aren't super fucking retarded

hmmm
>>
>>60435953
Well at least less retarded than Java. I have no idea why you would write this code though unless you're making some sort of library where this sort of thing makes usage syntax nice, and even then you shouldn't be doing it more than once. Never in my life have I written C++ that bad looking except when writing interfaces that are easy to use.
>>
>>60436459

Just give up, this is a java board now
>>
File: 1494050453294.png (24KB, 512x512px) Image search: [Google]
1494050453294.png
24KB, 512x512px
>>60435649
>C++
>SJWs, leftist hipsters
>>
>>60434030
C/C++ is the foundation for most other programming languages, and it's also still widely used today. Only problem is that it's fallen to the wayside now that most programming is going into web and mobile development which rely more on Java.
>>
>>60434030
>But is it a meme?
No. It remains a very widely used language that is gaining popularity because of IoT and will probably gain further popularity with WebAssembly. If nothing else there will be C++ code requiring maintenance for the rest of your working life.

>Is it even worth learning?
As always, it depends what you want to do. There are more efficient ways to get a job if that's what you mean.
>>
>>60434030
c++ is many things but it's not a meme
>>
>>60435649
C++ is, on the surface, one of the most boring languages to those who aren't deep enough to differentiate between languages to begin with. Whereas C has the hyper autistic appeal, Python/Go/Ruby have the new appeal, C++ sits somewhere in relative obscurity.

It's literally the least hipster SJW language there is.
>>
>>60434030
c++ is the perfect choice if you want performance and abstraction in one language.
its widely used in systems programming and science and for performance critical applications and for game engines. it also keeps constantly evolving, so be sure to check out the newest versions of c++.
>>
If you want to learn it, do. If you don't want to learn it, don't. Is this really so fucking hard for you mongoloids?
>>
>>60436597
This. I've spent the last four years in a computer science course, even the better students often don't know anything beyond Python and Java. To them C languages are something they were forced to do one year and never really "got".
If you want leftist languages, go to Javascript/Python/Ruby where you get to make things that look pretty and you don't need to think about how to arrange your struct members for optimal packing.
>>
>>60434686
Sweet meme, bro
>>
>>60434030
Computer programming is always worth learning regardless of the language. The question is what you want to do with it. If you want a job, i'd suggest Java since there's always enterprise shitshows needing people to grunt out Java. If you want to develop apps for mobile devices then you need objective c or swift.
>>
>>60437212

> If you want to develop apps for mobile devices then you need objective c or swift.

Hmm no java and yet java is the biggest platform for mobile apps
Thread posts: 20
Thread images: 5


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.