Java has a construct that allows a method to call itself via a "this()" reference. The name of this convention escapes me at the moment.
EDIT: Known as Constructor Delegation as pointed out below. Will only work on constructors, not methods in general as I have mistaken.
Does C++ with all its pointery goodness provide a reference to itself, but not specifically itself?
For example, I have a function with multiple overloads and the like.
void DoesSomething(){
this->(default1, default2);
}
void DoesSomething(int myValue1){
this->(myValue1, default2);
}
void DoesSomething(int myValue1, int myValue2){
//Do stuff
}