2、列化机制。 三.Parcel类的背后在Framework中有parcel类,源码路径是:Frameworks/base/core/java/android/os/Parcel.java典型的源码片断如下: [java]viewplaincopyprint?1./** 2. * Write an integer value into the parcel at the current dataPosition(), 3. * growing dataCapacity() if needed. 4. */ 5.public fina
3、l native void writeInt(int val); 6. 7./** 8. * Write a long integer value into the parcel at the current dataPosition(), 9. * growing dataCapacity() if needed. 10. */ 11.public final native void writeLong(long val); 从中我们看到,从这个源程序文件中我们看不到真正的功能是如何实现的,必须透过JNI往下走了。于是