我知道php有點。和Java很少。多維數組存儲多種數據類型
我正在創建一個小型應用程序來搜索文本區域中的文本並將結果存儲在數組中。
PHP中的數組看起來像這樣。
array(
"searchedText" => "The text that is searched",
"positionsFound" => array(12,25,26,......),
"frequencies" => 23 //This is total words found divided by total words
);
但是,java不支持具有多種數據類型的數組。在上面的數組中,只有第二個元素「positionFound」具有可變長度。
後來我需要遍歷這個數組並創建一個包含上述所有元素的文件。
請指導我
我可以建議你花時間閱讀了Sun的Java教程的時間開始與 「新到Java」 頁面 - HTTP ://www.oracle.com/technetwork/topics/newtojava/new2java-141543.html。從長遠來看,這將爲您節省很多痛苦... – 2011-05-11 10:54:48