我的工作,其中包括建立一個哈希以約1,700萬鍵一個Perl項目。這太大了無法存儲在內存中(我的筆記本電腦的內存只能容納大約1000萬個按鍵)。我知道解決的辦法是將數據存儲在磁盤上,但我有在實踐中執行這個麻煩。以下是我已經試過: DB_File use strict;
use DB_File;
my $libfile = shift;
my %library;
tie %library,
假設我有一個std::tuple: std::tuple<int,int,int,int> t = {1,2,3,4};
,我想用std::tie只是爲了可讀性目的這樣:只是用t.get<int>(0) int a, b, c, d; // in real context these names would be meaningful
std::tie(a, b, c, d) = t;