alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (lazy-override.check)

This example Scala source code file (lazy-override.check) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

a, a, int, int

The Scala lazy-override.check source code

lazy-override.scala:11: error: overriding value x in class A of type Int;
 lazy value x cannot override a concrete non-lazy value
    override lazy val x: Int = { print("/*B.x*/"); 3 }
                      ^
lazy-override.scala:13: error: overriding lazy value y in class A of type Int;
 value y must be declared lazy to override a concrete lazy value
    override val y: Int = { print("/*B.y*/"); 3 }
                 ^
two errors found

Other Scala examples (source code examples)

Here is a short list of links related to this Scala lazy-override.check source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.