Agenda
- Loop
- Expression
- File Read/Write
- Debug
- Process & Thread
Loop
while
a = 10 while a > 0 puts a a -= 1 end
until
a = 100 until a == 0 puts a a -= 1 end
loop
a = 10 loop do break if a <= 0 puts a a -= 1 end
循环控制
- break
- next
break
for x in 1..10 break if x == 5 puts x end
next
for x in 1..10 next if x == 6 puts x end
Expression
=~
正则匹配 匹配到返回首字符匹配的位置,匹配不到返回nil
/hello/i =~ "hello world" # => 0
!~
正则匹配 是否匹配不到 匹配到返回fals 匹配不到返回true
/666/i !~ "hello world" # => true
alias
别名
def hello 'hello' end alias old_hello hello def hello 'new hello' end puts old_hello puts hello
File Read/Write 文件读写
File.read
File.readlines
File#rewind etc
IO.read/write
File Read
file = File.open('run.log', 'r') while line = file.gets puts line end
File Write
file = File.open('run.log', 'a+') file.puts 'hello' file.close
File.open('run.log', 'a+') do |f| f.puts 'hello' end
Debug
Debug 工具
- ruby debugger
- byebug
byebug
$ gem install byebug
require 'byebug' def hello name byebug #此处会有断电,然后可以看上下文的变量 puts name end hello 'world'
Process & Thread 进程和线程
Process
pid = Process.fork{ #... }
Thread
Thread.new{ #... }
免责声明:文章中涉及的程序(方法)可能带有攻击性,仅供安全研究与教学之用,读者将其信息做其他用途,由读者承担全部法律及连带责任,本站不承担任何法律及连带责任;如有问题可邮件联系(建议使用企业邮箱或有效邮箱,避免邮件被拦截,联系方式见首页),望知悉。
- 左青龙
- 微信扫一扫
-
- 右白虎
- 微信扫一扫
-
评论