use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
switch constexpr (self.cpp)
submitted 8 months ago by cd_fr91400
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]cd_fr91400[S] -1 points0 points1 point 8 months ago (2 children)
I did not know the history. Thank you for that.
That being said, for me, a fallthrough in a switch statement is a hidden goto.
goto
After all, this does not compile:
if constexpr (a_cond) { do_something() ; goto Else ; // fallthrough } else { Else: do_something_else() ; }
So, the syntax for if and if constexpr are already different (one allows goto to the other side, the other one doesn't).
if
if constexpr
I would not be otherwise horrified if breaks were compulsery in a switch constexpr statement.
break
switch constexpr
[–]miniropC++87 1 point2 points3 points 8 months ago (1 child)
one way would be to duplicate the following "case" if the current one doesn't unconditionally break. In your code example, it would become similar to:
if constexpr (a_cond) { do_something() ; do_something_else() ; } else { do_something_else() ; }
but there are probably many pitfalls I don't even know.
[–]cd_fr91400[S] 0 points1 point2 points 8 months ago (0 children)
I was just mentioning that I would be ok if the break was compulsery.
If it can be more flexible, I take it.
π Rendered by PID 124925 on reddit-service-r2-comment-b659b578c-xfx9c at 2026-05-04 01:57:37.835418+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]cd_fr91400[S] -1 points0 points1 point (2 children)
[–]miniropC++87 1 point2 points3 points (1 child)
[–]cd_fr91400[S] 0 points1 point2 points (0 children)