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

  • Home
  • SEARCH
  • 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 6647687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:34:00+00:00 2026-05-26T00:34:00+00:00

class A { val x = println(A) } class B extends A { override

  • 0
class A { 
  val x = println("A") 
}
class B extends A {
  override val x = println("B")
}
(new B).x

Prints:

A
B

However,

class A { 
  lazy val x = println("A") 
}
class B extends A {
  override lazy val x = println("B")
}
(new B).x

Prints just:

B

According to Martin Odersky, the behaviour, at least in the non-lazy case, is “as specified”. I’m curious as to why the behaviour is specified that way, and why it differs when the val is lazy.

  • 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-26T00:34:01+00:00Added an answer on May 26, 2026 at 12:34 am

    The code in the template (“body”) of a class definition, outside of member definitions, is what goes into the constructor. Constructors for parent classes are always called when you initialize an instance of a child class (in this case, you are calling a constructor with no arguments, otherwise the syntax would be class B extends A(arg1, arg2) { ... }). For more details, see Section 5.1 in the Scala Language Specification.

    That is why println("A") is evaluated in the first case; that val definition is part of the constructor code.

    When you think about what happens at construction time in the second example, you never asked for the value of x defined in A; now because it is a lazy val, it will not be computed before it is needed.

    You can think of lazy vals as methods that take no argument and that cache their output the first time they are called. You didn’t call that method here, you just defined it.

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

Sidebar

Related Questions

class Test { import scala.collection._ class Parent class Child extends Parent implicit val children
Consider the following: object Main { case class Foo(bar: Int) extends FooList { val
class A : IFoo { } ... A[] arrayOfA = new A[10]; if(arrayOfA is
could you explain me what is incorrect in this trivial example? class C1 (val
Given the following code: class A extends Actor { def act() { loop {
case class MyInt(val i : Int) { private def factorial(a : Int) : Int
I am testing(trying) squeryl's relations modeling feature class Foo(val id: Long, val foBar: Long)
Edit: I was able to fix it by making changing val to lazy val
Given an arbitrary object: class Val(object): def __init__(self): this_val = 123 I want to
scala.math.ScalaNumber is a Java file which looks like this: public abstract class ScalaNumber extends

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.