In Scala, a class and its associated objects can access each other's private objects

Source: Internet
Author: User

In Scala, a class and its associated objects can access each other's private objects

class person {  private  var _age = 2  def age_= (Num: int)  = this._age = num   def age = _age  def printobj { println (S "I can  See ${person.obj} ")  }}object person {  // access the private  class field  ' age '   def double (P: person)  = p._age * 2   private val obj =  "Person ' S object"}object driver extends  app {  //The associated object can refer to the class's private variable   val p = new person  println ( P.age)   p.age = 10  println (Person.double (p))  // prints 20  The  //class can refer to the associated object's private variables   p.printObj    //prints I can see  Person ' S object} 


In Scala, a class and its associated objects can access each other's private objects

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.