your string is a static members, meaning that it will be created immediately the program begins executing , that is long before any instance of your class can be created through your constructors.
static members cannot be intialized via constructors.