赞
踩
见到的关于 Serialization and Marshalling 的最好的解释:
Both do one thing in common - that is serializing an Object. Serialization is used to transfer objects or to store them. But:
So Serialization is part of Marshalling.
CodeBase is information that tells the receiver of Object where the implementation of this object can be found. Any program that thinks it might ever pass an object to another program that may not have seen it before must set the codebase, so that the receiver can know where to download the code from, if it doesn’t have the code available locally. The receiver will, upon deserializing the object, fetch the codebase from it and load the code from that location.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。