热门标签
更多>
搜索结果
查询Tags标签: sampled,共有 2条记录-
Java实现音频播放
import java.io.File; import java.io.IOException;import javax.sound.sampled.AudioFormat; import javax.sound.sampled.AudioInputStream; import javax.sound.sampled.AudioSystem; import javax.sound.sampled.DataLine; import javax.sound.sampled.LineUnavailabl…
2021/5/2 22:25:08 人评论 次浏览 -
Nodejs Benchmark 模块的使用
nodejs 性能测试 benchmarktest.jsconst benchmark = require(benchmark); const suite = new benchmark.Suite;// 添加测试 suite.add(RegExp, function () {/o/.test(Hello World); }).add(indexOf, function () {Hello World.indexOf(o); }).on(cycle, function (e) {c…
2021/4/15 12:28:23 人评论 次浏览