*不寻常*的内存节省方法?
我在读一本有关 IOstream 的 C++ 教科书,我发现了这一点:
每当你想存储信息时 在电脑上使用的时间超过 程序的运行时间,通常 方法是将数据收集到 逻辑上连贯的整体并存储它 在永久存储介质上作为 文件。 (引自《C++ 中的编程抽象》)
是否有一种不寻常的方法来存储数据?
I was reading in a textbook on c++ about IOstreams, and I came across this:
Whenever you want to store information
on the computer for longer than the
running time of a program, the usual
approach is to collect the data into a
logically cohesive whole and store it
on a permanent storage medium as a
file.
(Quoted from Programming Abstractions in C++)
Is there an UNUSUAL approach to storing data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
推送到服务器、操作系统(实验性),让你冻结部分 RAM 等。
这是一个非常模糊的问题,而且实际上没有好的答案。
Pushing across to a server, operating systems (experimental) that let you freeze parts of RAM etc.
This is a very vague question, and really, has no good answer.
我想如果你将它存储在 RAM 中的某个位置,并希望当你再次运行你的程序时它仍然存在,那将是一种不寻常的存储方式:-)
i guess if you store it at some place in the RAM, and hope for it to be there when you run your program again, that would be an unusual way of storing :-)