- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Putting ??? to work
Wed, 2011-10-12, 03:39
% scala
Welcome to Scala version 2.10.0.r25823-b20111011192940 (Java
HotSpot(TM) 64-Bit Server VM, Java 1.6.0_26).
Type in expressions to have them evaluated.
Type :help for more information.
scala> class Bippy extends java.util.Collection[Int]
:7: error: class Bippy is missing 13 methods:
As seen from class Bippy, the missing method signatures are as follows.
(For convenience, these are usable as stub implementations.)
def add(x$1: Int): Boolean = ???
def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
def clear(): Unit = ???
def contains(x$1: Any): Boolean = ???
def containsAll(x$1: java.util.Collection[_]): Boolean = ???
def isEmpty(): Boolean = ???
def iterator(): java.util.Iterator[Int] = ???
def remove(x$1: Any): Boolean = ???
def removeAll(x$1: java.util.Collection[_]): Boolean = ???
def retainAll(x$1: java.util.Collection[_]): Boolean = ???
def size(): Int = ???
def toArray(): Array[Object] = ???
def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
class Bippy extends java.util.Collection[Int]
^
scala> :paste
// Entering paste mode (ctrl-D to finish)
class Bippy extends java.util.Collection[Int] {
def add(x$1: Int): Boolean = ???
def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
def clear(): Unit = ???
def contains(x$1: Any): Boolean = ???
def containsAll(x$1: java.util.Collection[_]): Boolean = ???
def isEmpty(): Boolean = ???
def iterator(): java.util.Iterator[Int] = ???
def remove(x$1: Any): Boolean = ???
def removeAll(x$1: java.util.Collection[_]): Boolean = ???
def retainAll(x$1: java.util.Collection[_]): Boolean = ???
def size(): Int = ???
def toArray(): Array[Object] = ???
def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
}
// Exiting paste mode, now interpreting.
defined class Bippy
scala> new Bippy
res0: Bippy = Bippy@76e86c03
Wed, 2011-10-12, 10:17
#2
Re: Putting ??? to work
Sweet! The Eclipse plugin should provide this as 'Quick Fix', too.
- Tiark
On Oct 12, 2011, at 4:39 AM, Paul Phillips wrote:
> % scala
> Welcome to Scala version 2.10.0.r25823-b20111011192940 (Java
> HotSpot(TM) 64-Bit Server VM, Java 1.6.0_26).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> class Bippy extends java.util.Collection[Int]
> :7: error: class Bippy is missing 13 methods:
> As seen from class Bippy, the missing method signatures are as follows.
> (For convenience, these are usable as stub implementations.)
>
> def add(x$1: Int): Boolean = ???
> def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
> def clear(): Unit = ???
> def contains(x$1: Any): Boolean = ???
> def containsAll(x$1: java.util.Collection[_]): Boolean = ???
> def isEmpty(): Boolean = ???
> def iterator(): java.util.Iterator[Int] = ???
> def remove(x$1: Any): Boolean = ???
> def removeAll(x$1: java.util.Collection[_]): Boolean = ???
> def retainAll(x$1: java.util.Collection[_]): Boolean = ???
> def size(): Int = ???
> def toArray(): Array[Object] = ???
> def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
>
> class Bippy extends java.util.Collection[Int]
> ^
>
> scala> :paste
> // Entering paste mode (ctrl-D to finish)
>
> class Bippy extends java.util.Collection[Int] {
> def add(x$1: Int): Boolean = ???
> def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
> def clear(): Unit = ???
> def contains(x$1: Any): Boolean = ???
> def containsAll(x$1: java.util.Collection[_]): Boolean = ???
> def isEmpty(): Boolean = ???
> def iterator(): java.util.Iterator[Int] = ???
> def remove(x$1: Any): Boolean = ???
> def removeAll(x$1: java.util.Collection[_]): Boolean = ???
> def retainAll(x$1: java.util.Collection[_]): Boolean = ???
> def size(): Int = ???
> def toArray(): Array[Object] = ???
> def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
> }
>
> // Exiting paste mode, now interpreting.
>
> defined class Bippy
>
> scala> new Bippy
> res0: Bippy = Bippy@76e86c03
Wed, 2011-10-12, 16:07
#3
Re: Putting ??? to work
I've been asking for this a long time :)
On Wed, Oct 12, 2011 at 7:09 AM, Tiark Rompf <tiark.rompf@epfl.ch> wrote:
On Wed, Oct 12, 2011 at 7:09 AM, Tiark Rompf <tiark.rompf@epfl.ch> wrote:
Sweet! The Eclipse plugin should provide this as 'Quick Fix', too.
- Tiark
On Oct 12, 2011, at 4:39 AM, Paul Phillips wrote:
> % scala
> Welcome to Scala version 2.10.0.r25823-b20111011192940 (Java
> HotSpot(TM) 64-Bit Server VM, Java 1.6.0_26).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> class Bippy extends java.util.Collection[Int]
> <console>:7: error: class Bippy is missing 13 methods:
> As seen from class Bippy, the missing method signatures are as follows.
> (For convenience, these are usable as stub implementations.)
>
> def add(x$1: Int): Boolean = ???
> def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
> def clear(): Unit = ???
> def contains(x$1: Any): Boolean = ???
> def containsAll(x$1: java.util.Collection[_]): Boolean = ???
> def isEmpty(): Boolean = ???
> def iterator(): java.util.Iterator[Int] = ???
> def remove(x$1: Any): Boolean = ???
> def removeAll(x$1: java.util.Collection[_]): Boolean = ???
> def retainAll(x$1: java.util.Collection[_]): Boolean = ???
> def size(): Int = ???
> def toArray(): Array[Object] = ???
> def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
>
> class Bippy extends java.util.Collection[Int]
> ^
>
> scala> :paste
> // Entering paste mode (ctrl-D to finish)
>
> class Bippy extends java.util.Collection[Int] {
> def add(x$1: Int): Boolean = ???
> def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
> def clear(): Unit = ???
> def contains(x$1: Any): Boolean = ???
> def containsAll(x$1: java.util.Collection[_]): Boolean = ???
> def isEmpty(): Boolean = ???
> def iterator(): java.util.Iterator[Int] = ???
> def remove(x$1: Any): Boolean = ???
> def removeAll(x$1: java.util.Collection[_]): Boolean = ???
> def retainAll(x$1: java.util.Collection[_]): Boolean = ???
> def size(): Int = ???
> def toArray(): Array[Object] = ???
> def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
> }
>
> // Exiting paste mode, now interpreting.
>
> defined class Bippy
>
> scala> new Bippy
> res0: Bippy = Bippy@76e86c03
Wed, 2011-10-12, 18:57
#4
Re: Putting ??? to work
FTW!
On Tue, Oct 11, 2011 at 23:39, Paul Phillips wrote:
> % scala
> Welcome to Scala version 2.10.0.r25823-b20111011192940 (Java
> HotSpot(TM) 64-Bit Server VM, Java 1.6.0_26).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> class Bippy extends java.util.Collection[Int]
> :7: error: class Bippy is missing 13 methods:
> As seen from class Bippy, the missing method signatures are as follows.
> (For convenience, these are usable as stub implementations.)
>
> def add(x$1: Int): Boolean = ???
> def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
> def clear(): Unit = ???
> def contains(x$1: Any): Boolean = ???
> def containsAll(x$1: java.util.Collection[_]): Boolean = ???
> def isEmpty(): Boolean = ???
> def iterator(): java.util.Iterator[Int] = ???
> def remove(x$1: Any): Boolean = ???
> def removeAll(x$1: java.util.Collection[_]): Boolean = ???
> def retainAll(x$1: java.util.Collection[_]): Boolean = ???
> def size(): Int = ???
> def toArray(): Array[Object] = ???
> def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
>
> class Bippy extends java.util.Collection[Int]
> ^
>
> scala> :paste
> // Entering paste mode (ctrl-D to finish)
>
> class Bippy extends java.util.Collection[Int] {
> def add(x$1: Int): Boolean = ???
> def addAll(x$1: java.util.Collection[_ <: Int]): Boolean = ???
> def clear(): Unit = ???
> def contains(x$1: Any): Boolean = ???
> def containsAll(x$1: java.util.Collection[_]): Boolean = ???
> def isEmpty(): Boolean = ???
> def iterator(): java.util.Iterator[Int] = ???
> def remove(x$1: Any): Boolean = ???
> def removeAll(x$1: java.util.Collection[_]): Boolean = ???
> def retainAll(x$1: java.util.Collection[_]): Boolean = ???
> def size(): Int = ???
> def toArray(): Array[Object] = ???
> def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
> }
>
> // Exiting paste mode, now interpreting.
>
> defined class Bippy
>
> scala> new Bippy
> res0: Bippy = Bippy@76e86c03
>
Fri, 2011-10-14, 13:57
#5
Re: Putting ??? to work
Oh that is really cool. If I can pick a nit, perhaps the generated argument names could be more humane, to make the copyable lines more immediately usable?
Anyway, nice work!
Fri, 2011-10-14, 14:27
#6
Re: Putting ??? to work
On Fri, Oct 14, 2011 at 5:56 AM, Ken Scambler wrote:
> Oh that is really cool. If I can pick a nit, perhaps the generated argument
> names could be more humane, to make the copyable lines more immediately
> usable?
If the methods are from scala, you get the real names. Have to see
what can be done about java. I checked it in, here's what it looked
like by then.
/** As seen from class Dingus, the missing signatures are as follows.
* For convenience, these are usable as stub implementations.
*/
// Members declared in java.util.Collection
def add(x$1: String): Boolean = ???
def addAll(x$1: java.util.Collection[_ <: String]): Boolean = ???
def clear(): Unit = ???
def contains(x$1: Any): Boolean = ???
def containsAll(x$1: java.util.Collection[_]): Boolean = ???
def iterator(): java.util.Iterator[String] = ???
def remove(x$1: Any): Boolean = ???
def removeAll(x$1: java.util.Collection[_]): Boolean = ???
def retainAll(x$1: java.util.Collection[_]): Boolean = ???
def toArray[T](x$1: Array[T with Object]): Array[T with Object] = ???
// Members declared in scala.collection.GenTraversableOnce
def isTraversableAgain: Boolean = ???
def toIterator: Iterator[(Set[Int], String)] = ???
def toStream: Stream[(Set[Int], String)] = ???
// Members declared in scala.math.Ordering
def compare(x: List[Int],y: List[Int]): Int = ???
// Members declared in scala.collection.TraversableOnce
def copyToArray[B >: (Set[Int], String)](xs: Array[B],start:
Int,len: Int): Unit = ???
def exists(p: ((Set[Int], String)) => Boolean): Boolean = ???
def find(p: ((Set[Int], String)) => Boolean): Option[(Set[Int], String)] = ???
def forall(p: ((Set[Int], String)) => Boolean): Boolean = ???
def foreach[U](f: ((Set[Int], String)) => U): Unit = ???
def hasDefiniteSize: Boolean = ???
def isEmpty: Boolean = ???
def seq: scala.collection.TraversableOnce[(Set[Int], String)] = ???
def toTraversable: Traversable[(Set[Int], String)] = ???
class Dingus extends Bippy[String, Set[Int], List[Int]]
^
four errors found
best regardsesser
2011/10/12 Paul Phillips <paulp@improving.org>