|
|
|
|
|
by smitherfield
3216 days ago
|
|
> classes have the features of structs (and much more) at the cost of performance. Not true; C++ classes have zero performance overhead over C/C++ structs (because they're just another word for the same thing). Of course Python classes have a lot of costly features that C++ classes don't have, but the notion of a "class" (with methods, constructors etc) is not one of them. |
|
In C++ ease of use is given up for the sake of performance. In python it is the other way.