學習筆記 Serialization

2022-03-01 16:17:49 字數 817 閱讀 8835

1。什麼樣的物件可以被序列化

標記[serializable]public class myclass {}

怎樣不使屬性不被序列化呢?

[nonserialized] int _cashsize;

標記變數或者說成員

//二進位製流序列化

arraylist l = new arraylist();

for (int x=0; x< 100; x++)

filestream s = file.create("foo.bin");

binaryformatter b = new binaryformatter();

b.serialize(s, l);

s.close();

//反序列化

filestream s = file.openread("foo.bin");

binaryformatter b = new binaryformatter(); 

arraylist p = (arraylist) b.deserialize(s);

s.close();

printvalues(p);

//實現iformater介面

iformater formater = new binaryformater();

iformater foramter = new soapformater();

//加密解密序列化的資料system.security.cryptography

xml序列化只能序列public成員

且序列化需要傳入typeof(要序列化的物件)

學習筆記 雜湊學習筆記

hash基本原理 hash就是乙個像函式一樣的東西,你放進去乙個值,它給你輸出來乙個值。輸出的值就是hash值。一般hash值會比原來的值更好儲存 更小 或比較。那字串hash就非常好理解了。就是把字串轉換成乙個整數的函式。而且要盡量做到使字串對應唯一的hash值。它的主要思路是選取恰當的進製,可以...

學習筆記 CentOS 學習筆記01

簡單的做個課堂筆記 虛擬機器用的是vmware,系統是centos cd etc sysconfig network scripts pwdls 顯示列表 cat ifcfg eth0 檢視檔案內容 vi ifcfg eth0 進入vi編輯器 onboot no 原始設定 x逐字刪除 d刪除整行 a...

筆記 spring cloud 學習筆記

1 spring cloud 是什麼 spring cloud為開發人員提供了快速構建分布式系統中一些常見模式的工具 例如配置管理,服務發現,斷路器,智慧型路由,微 控制匯流排 分布式系統的協調導致了樣板模式,使用spring cloud開發人員可以快速地支援實現這些模式的服務和應用程式。他們將在任...