Hacker News new | ask | show | jobs
by chadzawistowski 3694 days ago
> the only difference between a struct and a class

In C++ land, this would be true.

C doesn't let you write methods within structs. C structs don't even have inheritance. No virtual table is generated. There is no single-dispatch mechanism.