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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:51:28+00:00 2026-06-06T14:51:28+00:00

class A (names: String*) { val namesBuffer: ListBuffer[String] = new ListBuffer[String] } I was

  • 0
class A (names: String*) {
  val namesBuffer: ListBuffer[String] = new ListBuffer[String]
}

I was wondering, how I can add the names of the names array from the primary constructor argument to the namesBuffer field when creating the object ?
Do I have to create an auxiliary construtor to do so or is there another way to tell Scala to do operations in the primary Constructor ?

Note: The example above is fictive, I just want to know, how I can tell the primary constructor to do some more operations than assigning fields.

  • 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-06-06T14:51:29+00:00Added an answer on June 6, 2026 at 2:51 pm

    As axel22’s answer demonstrates, you can perform those operations anywhere in the body of the class.

    But it is good practice IMO to initialize the field fully with a single expression.

    When side effects are required, you can achieve this using curly braces to make a block, which is an expression having the value of the last line:

    class A(names: String*) {
      val namesBuffer: ListBuffer[String] = {
        val buffer = new ListBuffer[String]
        buffer ++= names
        buffer
      }
    }
    

    With this technique, you ensure that no other initialization logic accesses the value of namesBuffer before you have finished initializing that.

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

Sidebar

Related Questions

Say I have a list of names. case class Name(val first: String, val last:
Here's my Bean class source @Stateless(mappedName=StringVal) public class NewSessionBean implements NewSessionRemote { String val
assume in Scala I have something like: class NSV(val name:String,val value:String) { } and
Given, case class User(name: String, roles: List[String]) val users: List[User] = ... I'd like
Consider this code: class Foo[T : Manifest](val id: String = manifest[T].erasure.getName) I basically want
I have three objects case class Metric(val name: String, val tags: Map[String, String]) case
I had a Scala class as follows: class ClassA(val name: String) { println(this is
I've got two List<Name> s: public class Name { public string NameText {get;set;} public
I have two models: User (email:string) Profile (name:string) class User < ActiveRecord::Base has_one :profile
class Person { string name; public Person(string name) { this.name = name; } public

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.