Creates a new instance of a Java class
class.new([arg1, [, arg2, ...]])
A mlist typed _JClass
A Scilab data or a mlist typed _JObj
Creates a new instance of a Java class obtained with jimport.
jimport java.util.Date; jimport java.lang.System; t = System.currentTimeMillis(); s = Date.new(t); d = s.toString() jremove Date System t s;