Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
423 views
in Technique[技术] by (71.8m points)

rebol - 保存哈希的最佳方法是什么! 在Rebol中封锁?(What is the best way to save a hash! block in Rebol?)

I am using Rebol2 and would like to persist a HASH!

(我正在使用Rebol2,并希望保留哈希值)

block.

(块。)

Currently I am converting it to-string then using save .

(目前,我正在将其转换to-string然后使用save 。)

Is there a better way?

(有没有更好的办法?)

For example:

(例如:)

r: make hash! ["one" "two"]

I want to save this to a file, then load it back to r .

(我想将其保存到文件,然后将其加载回r 。)

  ask by Atomica translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

you are very near your goal.

(您非常接近目标。)

Just use save/all and load

(只需使用save/allload)

>> r: make hash! ["one" "two"]
== make hash! ["one" "two"]
>> save/all  %htest r
>> r: load %htest
== make hash! ["one" "two"]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...