— Scott McNealy, Sun Microsystems Chairman, President and ceo


What about static variables? Are they serialized?



Download 40,57 Mb.
Pdf ko'rish
bet410/555
Sana26.05.2022
Hajmi40,57 Mb.
#609235
1   ...   406   407   408   409   410   411   412   413   ...   555
Bog'liq
Head First Java (Kathy Sierra, Bert Bates) (z-lib.org)

What about static variables? Are they serialized?
A:
Nope. Remember, static means “one per class” not 
“one per object”. Static variables are not saved, and when an 
object is deserialized, it will have whatever static variable 
its class currently has. The moral: don’t make serializable ob-
jects dependent on a dynamically-changing static variable! 
It might not be the same when the object comes back.


444
 
chapter 14
Saving and restoring the game characters
import java.io.*;
public class GameSaverTest {
public static void main(String[] args) {
GameCharacter one = new GameCharacter(50, “Elf”, new String[] {“bow”, “sword”, “dust”});
GameCharacter two = new GameCharacter(200, “Troll”, new String[] {“bare hands”, “big ax”});
GameCharacter three = new GameCharacter(120, “Magician”, new String[] {“spells”, “invisibility”});
// imagine code that does things with the characters that might change their state values
 
try {

ObjectOutputStream os = new ObjectOutputStream(new FileOutputStream(“Game.ser”));
os.writeObject(one);
os.writeObject(two);
os.writeObject(three);
os.close();
} catch(IOException ex) {
ex.printStackTrace();
}
one = null;
two = null;
three = null;
 
try {

 ObjectInputStream is = new ObjectInputStream(new FileInputStream(“Game.ser”));
GameCharacter oneRestore = (GameCharacter) is.readObject();
GameCharacter twoRestore = (GameCharacter) is.readObject();
GameCharacter threeRestore = (GameCharacter) is.readObject();
System.out.println(“One’s type: “ + oneRestore.getType());

Download 40,57 Mb.

Do'stlaringiz bilan baham:
1   ...   406   407   408   409   410   411   412   413   ...   555




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish