我有一个代码片段
vector<foo> bar;
它工作正常,但Doxygen警告说“找不到支持的xml / html标签&lt; foo&gt;。因为它是一个代码,使用转义字符,我发现谷歌搜索,是不可能的。我可以抑制警告吗?” p>
答案 0 :(得分:2)
您可以使用以下代码段:
var arr = [1, 2, 3, 4],
copy = arr.slice(0),
songs = [];
while (songs.length < arr.length) {
var n = Math.floor(Math.random() * copy.length);
songs[songs.length] = "assets/music/" + copy[n] + ".mp3";
copy.splice(n, 1)
}
document.writeln(songs.join("<br>"))