Can any one tell me? what does following means in ruby program:
obj = myClass.new
(Err("Error: Can't get myClass instance"); exit) if obj == nil
Thanks in advance
|
Can any one tell me? what does following means in ruby program:
Thanks in advance |
|||
| show 2 more comments |
I find this code confusing. Under normal circumstances, |
|||||||||||
|
|
This is equivalent to:
I would personally use the version I show above as I consider it more readable. |
|||||
|
|
It means that In ruby you can write an if statement like this: |
|||
|
|
unless), concatenating commands with;is generally considered bad style. You can also refactorErrinto some method that also exits the script and now you can write simply:obj = myClass.new or error("can't get myClass instance"). – tokland Jun 19 '12 at 10:17myClass.newreturnsnil? that sounds unlikely to me. – tokland Jun 19 '12 at 10:19def myClass.new; nil; end; yes, it's unlikely that someone would use that, but it's possible. :) – Sony Santos Jun 19 '12 at 11:39