operator overloading prefix postfix c++

For prefix increment operator overloading in C++:

ClassName& operator++() {
    // Perform the increment operation on the object
    return *this;
}

For postfix increment operator overloading in C++:

ClassName operator++(int) {
    ClassName temp = *this;
    // Perform the increment operation on the object
    return temp;
}