I have some class C:

class C (...) { ... }

I want to use it to index an efficient map. The most efficient map is an Array. So I add a "global" "static" counter in companion object to give each object unique id:

object C {
  var id_counter = 0
}

In primary constructor of C, with each creation of C I want to remember global counter value and increase it.
Question 1: How to do it?

Now I can use id in C objects as perfect hash to index array. But array does not preserve type information like map would, that a given array is indexed by C's id.

Question 2: Is it possible to have it with type safety?

Update:
Type safety in question 2 concerns type of index of map, to avoid mixing two not related ints. The value of course is (type) safe..

Question 1 asks how to increment a variable in default contructor?
Ie: Where to put?

id_counter += 1
link|improve this question

62% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Answer to your question 2:

case class C_Id(val asInt: Int)

object C {
  private var list: ArrayBuffer[C] 
  // resizable array in scala.collection.mutable
  // you can also use ArrayList

  def apply(id: C_Id) = list(id.asInt) // only accepts an id of C
  ...
}

class C (...) {
  // in constructor:
  list += this
}

To edited question 1: The default constructor is just the body of the type, except the definitions of methods and other constructors.

link|improve this answer
Looks ok, but I need more than apply. Can't I inherit from Array or Seq? – Łukasz Lew May 9 '10 at 23:33
1  
You can't inherit from Array, just like in Java. Just make your methods call corresponding methods on list, like apply does. – Alexey Romanov May 10 '10 at 8:57
Can implicits help me here? In a manner similar to RichString? – Łukasz Lew May 10 '10 at 12:19
If I understand you correctly, no. – Alexey Romanov May 10 '10 at 12:23
No. They are useful when you want to add a method to every instance of a given type. Here you deal with a single instance of C companion object, and a single instance of ArrayBuffer[C]. – Alexey Romanov May 10 '10 at 12:28
feedback

I don't see the problem. I would probably make the counter private so code outside class and object C cannot alter it. Incrementing a var of type Int is trivial:

idCounter += 1

Arrays are type-safe in Scala, since they are implemented directly by JVM arrays (starting in 2.8).

I suspect I've not really understood your questions...

Update:

Increment the counter in the constructor, presumably.

As for creating an actual perfect hash function, I don't think you're really on the right track. (You've just pushed the mapping from whatever your actual keys are into your own code.) You should read up on techniques for creating minimal and / or perfect hash functions.

link|improve this answer
Is incrementing the counter in the constructor thread safe? – Jeb Oct 22 '10 at 19:02
I believe so, providing you don't publish the value before the constructor(s) have (all) returned. – Randall Schulz Oct 23 '10 at 19:47
feedback

Could you make the default constructor of C private, and provide a factory method in the companion object (which could easily handle updating the counter)?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.