Answers for "procedural abstraction examples"

0

procedural abstraction examples

public void myFunction(String name) {
	// whatever
}

public void myFunction(String name, boolean isAdult) {
	// whatever, but now this is called whenever the extra parameter
    // is callled instead of the other one
}
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language