m******t 发帖数: 2416 | 1 Remember when we are talking about serializing objects and transfering
them over network, those actually serialized and transferred are only
the data members(some of them), not the code of those methods. So if
you want to "resume" your computing on the remote host, that is, you
are going to call some method of that same class(or its super class if
that method is passed along from there). So you have to have that same
class or the super class ready at the remote side. |
|