将类保存到二进制文件中 - Python
- 作者: 殷娘娘
- 来源: 51数据库
- 2022-10-25
问题描述
我知道可以使用以下方法将类保存到 c++ 中的二进制文件中:
I'm aware that saving a class into a binary file in c++ is possible using:
file.write(Class_variable, size_of_class, amount_of_saves, file_where_to_save)
或类似的东西,我想在 python 中使用它,以便更轻松地写入和读取大量数据.
or something similar, and I wanted to use that in python in order to make it easier to write and read lots of data.
我试过这样做:
def Save_Game(player, room):
address = 'Saves/player'
file = open(address, 'wb')
file.write(player)
address = 'Saves/room'
file = open(address, 'wb')
file.write(room)
房间和玩家是class_objects.但它说:
Room and player being class_objects. But it says:
TypeError: must be convertible to a buffer, not PlayerMarty
我能做什么?
推荐答案
pickle 是你需要的.pickle 模块实现了一种基本但强大的算法,用于序列化和反序列化 Python 对象结构.这是一个例子
pickle is what you need. The pickle module implements a fundamental, but powerful algorithm for serializing and de-serializing a Python object structure. This is an example
import pickle
class MyClass:
def __init__(self,name):
self.name = name
def display(self):
print(self.name)
my = MyClass("someone")
pickle.dump(my, open("myobject", "wb"))
me = pickle.load(open("myobject", "rb"))
me.display()
推荐阅读
热点文章
Discord.py(重写)on_member_update 无法正常工作
0
Discord.py 在 vc 中获取用户分钟数
0
discord.py 重写 |为我的命令出错
0
Discord.py rewrite 如何 DM 命令?
0
播放音频时,最后一部分被切断.如何解决这个问题?(discord.py)
0
在消息删除消息 Discord.py
0
如何使 discord.py 机器人私人/直接消息不是作者的人?
0
(Discord.py) 如何获取整个嵌入内容?
0
Discord bot 尽管获得了许可,但不能提及所有人
0
Discord.py discord.NotFound 异常
0
