::String means explicit root namespace.

So if you have something like
module MyNamespace
  class String
     ...
  end
end

MyNamespace::String will be your own class, while ::String will still be 
the original string class defined by Ruby. If you just type String, it'll 
find the closest matching namespace, so if you call String.new from within 
MyNamespace, it'll return MyNamespace::String, while if you call String.new 
from outside MyNamespace, it'll call the default Ruby string. Writing 
::String means you explicitly want the default Ruby string, even if you 
call it from inside MyNamespace.

On Monday, July 14, 2014 11:12:01 PM UTC-7, Ruby-Forum.com User wrote:
>
> Hello all, 
>
>       What is significance of :: in ActiveRecord::Base. 
>
> What is difference between ::String.new and String.new 
>
>
> Thank you, 
> Praveen 
>
> -- 
> 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/bf38b8ff-7018-4530-b36c-ad493fc4daed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to