I used to only use C#, and I liked the simplicity of only using one symbol to access any prop/field/method. But now I've used Rust for a while I do prefer separating the two for the same reasons you mentioned.
C++ was my language of choice for a long time, but I can't say I'm with you on this one. If I'm going to use Vec, I had better know what it is already. Littering the code with a special double-glyph operator when a dot would do is just needless noise to me.
(I won't criticize you for liking it, though. Cheers.)
Yeah, kind of curious what Go does here then / what the actual experience is like.
It abuses casing for public/private, so presumably there's no way to see whether a given sequence of letters is a variable or a type.
In Java, your objects start lowercase, so if you see uppercase, its a static call.
Not really, that's just the way a specific coding style was specified. You're free to refactor all your projects to follow any other coding style if you really want to, and your programs will continue to work just fine.
I don’t understand the C++ hate. I’m definitely biased since I learned it before anything else, but the flow of the code and the object-oriented principles just make sense to me. And yeah, I appreciate the scope resolution operator a lot.