how to fail initialize

J

Jim

I would like to know the correct way to fail the creating of an object.
I would return a NULL in c/c++ but returning a nil does not to seem to
work correctly i.e.

if(obj) then do stuff

OR

if(obj != nil) then do stuff

New to Ruby if you couldn't guess.

Jim.
 
A

ara.t.howard

I would like to know the correct way to fail the creating of an object.
I would return a NULL in c/c++ but returning a nil does not to seem to
work correctly i.e.

if(obj) then do stuff

OR

if(obj != nil) then do stuff

New to Ruby if you couldn't guess.

def initialize
raise
end

the code is easier to work with if it either returns valid results, or raises
an exception - i removes the burden of testing return values in the client
code.

kind regards.

-a
 
J

Jim Bob

Thanks for quick response, I decided to do error testing before creating
object thus removing the problem, I find exception handling messy.

Thanks,
Jim.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top