如果您无法打开链接,我需要执行这些命令才能从笔记本电脑中完全删除Android Studio。
require 'benchmark'
h = { abc: 'hello', 'another_key' => 123, 4567 => 'third' }
a = 1..10
many = 500_000
Benchmark.bm do |b|
GC.start
b.report("hash keys collect") do
many.times do
h.keys.collect(&:to_s)
end
end
GC.start
b.report("hash keys map") do
many.times do
h.keys.map(&:to_s)
end
end
GC.start
b.report("array collect") do
many.times do
a.collect(&:to_s)
end
end
GC.start
b.report("array map") do
many.times do
a.map(&:to_s)
end
end
end
当我在命令提示符下键入命令时,它会显示"' rm'不被识别为内部或外部命令,可操作程序或批处理文件。"。任何帮助表示赞赏。
答案 0 :(得分:0)
rm
是一个用于删除文件的Unix实用程序。如果您没有使用基于Unix的操作系统,如Linux或OSX,那么此指令可能不适合您。要卸载,只需转到Control Panel
并像其他程序一样卸载。 Windows命令提示符的rm
替代方法称为del
。找到del
的更多信息here。
答案 1 :(得分:0)
更好的Windows命令行等效rm -rf
是
rmdir /s /q
或者,也许不那么好,但是有趣而翔实
echo y | rmdir /s
答案here中对此进行了讨论。在这里,我referenced“有趣且信息丰富”命令...
...早在命令没有抑制确认消息的选项时使用。只需ECHO所需的响应,然后将值传递到命令中即可。