创建“嘟嘟声”的最简单方法是什么? 来自 Ruby 程序的声音?
我正在制作一个小的 ruby 命令行脚本,我想知道让程序发出蜂鸣声的最简单方法是什么。
I'm making a small ruby command line script and I wanted to know what the simplest way to have the program emit a beep is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试打印可听见的铃声字符:
Try printing the audible bell character:
对于 Mac OS X:
由于某种原因,传统的
print "\a"
对我来说并不总是有效(MBA,10.7.4)For Mac OS X:
Conventional
print "\a"
didn't always work by some reason for me (MBA, 10.7.4)对于 Windows,请使用 win32-sound gem - 为您的 Ruby 应用程序添加声音。
安装:
然后在 Ruby 中:
对于非 Windows,看起来可以工作: 如何发出蜂鸣声?
For windows, use the win32-sound gem - Adding Sound to Your Ruby Apps.
To install:
Then in Ruby:
For non-windows, looks like this could work: How to make beep sounds?
最简单的方法是
puts 7.chr
这是一种自定义方法
The easiest way is
puts 7.chr
Here is a customize way
请尝试以下操作:
Try the following: