1. 调试&注释&打印输出
调试
ruby属于解释型语言,即脚本,在linux上,脚本的执行无法三种:
1. 用解释器运行脚本
解释器 脚本文件
即:ruby 脚本文件
2. 直接运行脚本
在脚本文件里面用
#! 脚本解释器
定义好脚本解释器路径,然后再授予脚本执行权限,接着直接运行
./脚本文件
即可。
3. 在解释器里面运行脚本
[email protected]:/home/ywt/ror_tests/ruby_tests# irb 2.1.5 :001 > str = "sdfsdf" => "sdfsdf" 2.1.5 :002 > puts str sdfsdf => nil 2.1.5 :003 > print str sdfsdf => nil 2.1.5 :004 >
ps:建议直接用第一种,第二种比较麻烦,第三种比较难看(当然try语法可以用这个)
注释
coment.rb
#single line comment str = ‘hello world‘ =begin this is a test of mutiple line comments =end puts str
测试输出如下:
[email protected]:/home/ywt/ror_tests/ruby_tests# ruby comment.rb hello world
即:
#单行注释
=begin 多行注释 =end
打印输出
print_test.rb
str =‘hello world‘ puts str print str puts ‘ =========‘
测试输出
[email protected]:/home/ywt/ror_tests/ruby_tests# ruby print_test.rb hello world hello world =========
即:
puts str = print str + print new_line
(new_line在windows下面是 ‘\r\n‘ ,linux上面是 ‘\n‘)
类
一般定义
class Aclass end
注意:类名的第一个字母必须大写!(python则无此要求)
继承的一般定义
class Child<Father end
即继承符为‘<‘;
问题:是否支持多继承?
成员
成员变量
成员函数
时间: 2024-10-17 02:36:19