Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 886371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:03:21+00:00 2026-05-15T13:03:21+00:00

For example, I’ve always seen methods referred to as String#split , but never String.split

  • 0

For example, I’ve always seen methods referred to as String#split, but never String.split, which seems slightly more logical. Or maybe even String::split, because you could consider #split to be in the namespace of String. I’ve even seen the method alone, when the class is assumed/implied (#split).

I understand that this is the way methods are identified in ri. Which came first?

Is this to differentiate, for example, methods from fields?
I’ve also heard that this helps differentiates instance methods from class methods. But where did this start?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T13:03:22+00:00Added an answer on May 15, 2026 at 1:03 pm

    The difference indicates how you access the methods.

    Class methods use the :: separator to indicate that message can be sent to the class/module object, while instance methods use the # separator to indicate that the message can be sent to an instance object.

    I’m going to pick the Complex class (in Ruby 1.9) to demonstrate the difference. You have both Complex::rect and Complex#rect. These methods have different arity and they serve entirely different purposes. Complex::rect takes a real and an imaginary argument, returning a new instance of Complex, while Complex#rect returns an array of the real and imaginary components of the instance.

    ruby-1.9.1-p378 > x = Complex.rect(1,5)
     => (1+5i) 
    ruby-1.9.1-p378 > x.rect
     => [1, 5] 
    ruby-1.9.1-p378 > x.rect(2, 4) # what would this even do?
    ArgumentError: wrong number of arguments(2 for 0)
        from (irb):4:in `rect'
        from (irb):4
        from /Users/mr/.rvm/rubies/ruby-1.9.1-p378/bin/irb:17:in `<main>'
    

    I think the reason that they don’t use . as the separator for everything is that it would be ambiguous whether the method belongs to a class or an instance. Now that I’m used to Ruby doing this, I actually see it as a drawback to other languages’ conventions, to be honest.

    Also, this is somewhat of a completely unrelated topic from fields because all messages you can send are messages, properly speaking, even if it looks like a publicly accessible field. The closest thing you have to fields are attributes or instance variables, of course, which are always prefixed with @ and are not directly accessible from outside the instance unless you are using inheritance or Object#instance_variable_get/_set.

    As to specifically why they chose :: and #? :: makes sense to me because it conventionally separated namespaces, but # was probably just a symbol that wasn’t used in other nomenclature and could unambiguously be recognized as an instance-method separator.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

example: NSString *day = [[NSString stringWithFormat:@السبت];and i think the representation of this string in
Example input string: (F1 (F2 X (Y) Z) (F3 A B) What i want
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
example String : /gasg/string expected result : string Characters to to remove: all characters
Example Outlook: its only one process but can have multiple windows (user can double
Example: Foo make_foo(int a1, int a2){ Foo f(a1,a2); return f; } Having seen such
i got an object with contents of html markup in it, for example: string
Example: public class JFrameTest { public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() {
Example for file below: I want to capture the Customers (highlighted) as a string
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.