so basically I'm just sand boxing around with c++ because I'm trying to learn some but when I created a class I quickly found out that using classType className=value;
will create the class using an overloaded constructor
how do I make it so my class can use other operators like *, == or ||
like i know in python you create private methods like __plus__
is it something similiar in c++?