I just wrote a constructor like this:
public ArchivesManager(String identifier) {
String[] components = String.split("\nNEW");
}
But there's an error message: non-static method split(java.lang.String) cannot be referenced from a static context. I know that error message, but why is the constructor static?!