A Commonly Unaddressed Issue in C++ and Golang Comparisons
I just wanted to address a seldom mentioned nuance in the comparison of the Go and C++ programming languages. Pretty much every website or forum you go to will mention that C++ is usually at least 50% faster than go. What they don't mention is the amount of extra effort that went into optimizing the C++ code over the Go code. Recent experiences have shown me that the final level of optimization that makes C++ actually faster than Go are just not worth it to a normal developer. Background To perhaps give just a little more backing to my humble opinion I thought I would briefly mention my history with Go, and especially C++ (being that an inexperienced C++ user can very easily write bad code). C++ was the first programming language I ever learned years ago. I still remember following Bucky's C++ tutorials on Youtube ( https://www.youtube.com/playlist?list=PLAE85DE8440AA6B83 ). Thus, it has always had a soft spot in my heart. Several years later it was the first language I was tau...