1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
require 'default_constructor'
include Default_constructor
# Ruby 1.6 raises NameError if you try to call Class.new where no constructor
# is defined; Ruby 1.7 changed this to NoMethodError
NoConstructorError = Kernel.const_defined?("NoMethodError") ? NoMethodError : NameError
# This should be no problem
a = A.new
# Nor should this
aa = AA.new
# The default constructor for B is private, so this should raise an exception
begin
b = B.new
rescue ArgumentError
# pass
end
# The two-argument constructor for B should work
b = B.new(3, 4)
# BB shouldn't inherit B's default constructor, so this should raise an exception
begin
bb = BB.new
puts "Whoa. new BB created."
rescue NoConstructorError
# pass
end
# C's constructor is protected, so this should raise an exception
begin
c = C.new
print "Whoa. new C created."
rescue NoConstructorError
# pass
end
# CC gets a default constructor, so no problem here
cc = CC.new
# D's constructor is private, so this should fail
begin
d = D.new
puts "Whoa. new D created"
rescue NoConstructorError
# pass
end
# DD shouldn't get a default constructor, so this should fail
begin
dd = DD.new
puts "Whoa. new DD created"
rescue NoConstructorError
# pass
end
# AD shouldn't get a default constructor, so this should fail
begin
ad = AD.new
puts "Whoa. new AD created"
rescue NoConstructorError
# pass
end
# Both of the arguments to E's constructor have default values,
# so this should be fine.
e = E.new
# EE should get a default constructor
ee = EE.new
# EB should not get a default constructor (because B doesn't have one)
begin
eb = EB.new
puts "Whoa. new EB created"
rescue NoConstructorError
# pass
end
# This should work fine
f = F.new
# This should work fine
ff = FFF.new
# This should work fine
g = G.new
# This should work fine
gg = GG.new
|