Programming Ruby 读书笔记(三)

Ruby的标准类型:

A.数字

class Test

  
3 . times        {  print   " "  }
  
1 . upto( 5 )     {  | i |   print  i ,   "   "  }
  
99 . downto( 95 ) {  | i |   print  i ,   "   "  }
  
50 . step( 80 , 5 ) {  | i |   print  i ,   "   "  }

  a 
=   " 23 "
  b 
=   " 34 "
  puts 
" "
  puts a 
+  b
  puts Integer(a) 
+  Integer(b)

end

输出:

X X X 1 2 3 4 5 99 98 97 96 95 50 55 60 65 70 75 80
2334
57

B.字符串

class Test

  puts 
" That's right "
  puts 
%Q / That ' s right/
  
  puts 
' escape using  " / "'
  puts %q/escape using "/"/

end

puts "now is #{
                def the(a)
                  
' the  '  + a
                end
                the(
' time ' )
              } for all good coders..."

输出:

That's right
escape using "/"
That's right
escape using "/"
now is the time for all good coders...

操作字符串

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值