跳到主要內容

序列化(Serializable)

如果要實作序列化,要確認其成員是否都有實作序列化

實做序列化是因為要有object stream,可將資料直接用object寫入或讀取

public class TestSerializableClass implements Serializable{
    String Name = "Test";
}

留言

這個網誌中的熱門文章

What is phpize

What is phpize According to the PHP official document : The phpize command is used to prepare the build environment for a PHP extension. If you need to build such an extension that from github or another code repositories, you can use  build tools to perform the build manually.