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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:31:16+00:00 2026-05-27T05:31:16+00:00

Scala have wealth of immutable structure. I wondered how do Scala manage excessive allocation

  • 0

Scala have wealth of immutable structure.

I wondered how do Scala manage excessive allocation and deallocation of such objects. How does it look for existing sublists when, e.g. concatenating 1 to List(1,2,3). How does it track a certain List is not used, and allow the garbage collector to release it?

I would design it roughly like this

class List {
    private Map<Integer,WeakRef<List>> listCache;
    public List(Integer head,List tail) {...}
    public synchronized List prepend(Integer i) {
        if (listCache.get(i) != null) {
            if (listCache.get(i).get() == null) {
                listCache.put(i,new List(i,this));
            }
    }
}

How does Scala design that? Does it handle excessive allocations and deallocations well? What does it do about threading?

  • 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-27T05:31:16+00:00Added an answer on May 27, 2026 at 5:31 am

    Scala doesn’t manage the deallocation of these objects at all. They are created on the heap as normal JVM objects, and garbage collected by the JVM just like any other Java or Scala object. As the comments on your question point out, it doesn’t re-use lists created from previous calls to List() – it is always a new object.

    To clarify the situation with concatenating lists – in this case, the resulting List object does hold a reference to the two ends of the list, but it still isn’t doing any special caching of previously used lists or anything like that.

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

Sidebar

Related Questions

Does Scala have a version of Rubys' each_slice from the Array class?
Does anyone have a Scala implementation of Kadane's algorithm done in a functional style?
Does Scala have a built in formatter for binary data? For example to print
Does Scala have a native way to count all occurrences of a character in
In Scala I have a list of objects that represent points and contain x
I have some Scala code that does something nifty with two different versions of
Does Scala have any sort of classes that can deal with this? I was
Since Scala does not have old Java style for loops with index, // does
Used as a scripting language, does Scala have some sort of include directive, or
Does scala have an equivalent to scheme's cond?

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.