I have a class which has not default constructor. And I need a way to get 'blank' instance of this class. 'blank' means that after instantiation all class fields should has ...
It is possible to serialize a method? Because when I look at the documentation the Method class does not implements Serializable. So are there any alternatives?
I have a class that implements Serializable, it's part of a bigger mesh of objects, it contains a Constructor field, but when it's the Constructors turn to be serialized ...
In Javascript, if you want to inspect some object in chrome,
console.log(object) will printout variables, and methods about the object.
Ruby also has object.inspect which returns basic information about the object.
What code ...