Good question!

Using :: you have access to the class inside the module. Module can nest
another modules and so on. :: its a namespace resolution operator.

Call ::String.new inside some module back you to top-level namespace
(outside the module)

Here is examples

class String
 def initialize
   puts "im string outside module"
 end
end

module ActiveRecord
  module AnotherModule
  end

  class String
   def initialize
     puts "im string inside module"
   end
  end

  class Base
   def initialize
    ::String.new
    String.new
   end
  end
end

Here are results from IRB:

1.9.3-p392 :021 > ActiveRecord::Base.new
im string outside module
im string inside module
 => #<ActiveRecord::Base:0xa024fb8>
1.9.3-p392 :022 > ActiveRecord::String.new
im string inside module
 => #<ActiveRecord::String:0xa023168>

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/16b571bc5841c8303874e67adafec595%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to