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 6729835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:20:14+00:00 2026-05-26T10:20:14+00:00

I want to do this: trait Renderable { def render: String } trait Parens

  • 0

I want to do this:

trait Renderable {
    def render: String
}

trait Parens extends Renderable {
    abstract override def render = "(" + super.render + ")"
}

object Foo extends Renderable with Parens {
    def render = "Hello"
}

But this does not work because the linearization order puts Parens after Foo
(Foo always comes, of course) so Parens can’t advise Foo.render.

I end up doing this:

trait FooRender {
    def render = "Hello"
}

object Foo extends FooRender with Parens {
}

But sometimes I really don’t want to do that because it breaks things up. As
far as I can tell, linearization order is the only thing getting in the way,
but I don’t know a way to change that. What might make this cleaner?

  • 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-26T10:20:14+00:00Added an answer on May 26, 2026 at 10:20 am

    How about separating the presentation logic (render) and the actual contents (value)?

    trait Renderable {
      def value : String
      def render = value // default presentation logic, simple rendering.
    }
    
    trait Parens extends Renderable {
      override def render :String = "(" + value + ")" // parens rendering.
    }
    
    object Foo extends Parens {
      def value = "Hello"
    }
    
    println(Foo.render) // prints '(Hello)'
    

    Edit

    Found a way you can do pretty much what you wanted, check it out:

    trait Renderable {
      def render: String
    }
    
    trait Parens extends Renderable {
      abstract override def render = "(" + super.render + ")"
    }
    
    class Foo extends Renderable {
      def render = "Hello"
    }
    
    val foo = new Foo with Parens
    println(foo.render)
    

    You can’t use an object since you need to implement the trait at creation time, but if you can control the instance creation then this might work :).

    I’m pretty sure it’s not possible to do it otherwise (someone please correct me if I’m wrong)

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

Sidebar

Related Questions

I have this situation object SuperHorribleLongName { trait X { private[SuperHorribleLongName] def internalGaga() :
I want to be able to declare something like this: trait Narrowable[A] extends Iterable[A]
Well, I have something like this: trait A class Serving(a: => A) object App
I want this url http://www.youtube.com/watch?v=dgNgODPIO0w&feature=rec-HM-fresh+div to be transformed to: http://www.youtube.com/v/dgNgODPIO0w with php.
I want this: http://jqueryui.com/demos/dialog/#modal-message to happend when you click on ClickMe. how to do
I want this for some conditional compilation code that will run in all IE's
I want this to be on top... how can I do this and not
I only want this function to run if .toolbar li does not have the
I'm new to PHP and I want this code <option value= disabled=disabled>-------------</option> to be
Before I ask this, do note: I want this for debugging purposes. I know

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.