class System

class System Introduction The java.lang.System class comes with many static methods and mainly intended to communicate with the underlying operating systems. Using these methods, it is possible to take keyboard input (using System.in), knowing system time (using currentTimeMillis()), copying an array elements into another (using arraycopy()), to advise to go for garbage collection (using gc()) …

class System Read More »