hello friends I have a doubt that for me is something I do not understand, builders initialize the objects of a class, but what is the purpose of the overload of builders, in general because there is that term in java ?, because it is possible to create several constructors in java but with different parameters? What is your general purpose?
because example with these two constructors:
public class HelloWorld{
public HelloWorld(int edad){
}
public HelloWorld(int numero){
}
}