⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 objectcopier.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)ObjectCopier.java	1.5 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.copyobject ;/** Provides an interface for a variety of means to copy an arbitrary  * object.  Any implementation of this interface must return an exact * copy of obj, preserving all aliasing across all objects reachable  * from obj.  ReflectiveCopyException must be thrown if the implementation * cannot copy obj for some reason.  Note that a trivial implementation * of this interface is possible (always return obj), but this is often * not the desired implementation. */public interface ObjectCopier {    Object copy( Object obj ) throws ReflectiveCopyException ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -