0
我正在學習XML,我正在嘗試爲測試輸入創建一個XML文件。 XML文件必須提供測試名稱和要測試的文件列表。我不知道該XML結構是該兩間更適合:瞭解XML結構
<?xml version="1.0"?>
<test>
<name>Test987575454</name>
<file>File1.cpp</file>
<file>File2.cpp</file>
<file>File3.h</file>
</test>
或
<?xml version="1.0"?>
<test name="Test987575454">
<file>File1.cpp</file>
<file>File2.cpp</file>
<file>File3.h</file>
</test>
沒關係...我喜歡第2種方式(attributtes中的值),因爲它更短。 – TOUDIdel 2012-01-28 08:57:32