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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:29:22+00:00 2026-06-09T10:29:22+00:00

I wrote a class implementing the command design pattern : class MyCommand[-T, +R](val name:

  • 0

I wrote a class implementing the command design pattern:

class MyCommand[-T, +R](val name: String, val execute: T => R)

, prepared two command and stored it in a MutableList:

val commands = new mutable.MutableList[MyCommand[Nothing, Any]]
commands += new MyCommand[String, String]("lower", s => s.toLowerCase())
commands += new MyCommand[Date, Long]("time", d => d.getTime)

Then I have two data to be executed:

val data = Array("StRiNG", new Date())

The problem for me is that I don’t know how to determine which datum is applicable to the command:

data.foreach {
  d => commands.foreach {
    c =>
    // println(c.execute(d)) if d is applicable to c.execute().
  }
}

what I tried is pattern matching with type specification, but it yields syntax error:

c.execute match {
  case m: (d.getClass => Any) => println(c.execute(d))
}

Help me 🙁

  • 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-09T10:29:24+00:00Added an answer on June 9, 2026 at 10:29 am

    I am pretty sure that there are better ways of solving this problem, but this might work for you. I tested it with Scala 2.9.2.

    MyCommand takes a Manifest as an additional implicit argument, which gives us access to the class that represents the from-type of the execute function at runtime:

    class MyCommand[-T: Manifest, +R](val name: String, val execute: T => R) {
      val fromClass = manifest[T].erasure
    }
    

    The list of commands is basically as in your original post, as is the list of data:

    val commands = List(
      new MyCommand[String, String]("lower", _.toLowerCase()),
      new MyCommand[Date, Long]("time", _.getTime)
    )
    
    val data = List("StRiNG", new Date())
    

    Matching data to commands relies on the runtime representation of the involved types as classes, and a rather ugly cast. The cast is especially ugly because it does not give a precise return type, i.e., additional matches or casts are necessary if you need to know the precise return type of the command’s return value.

    data foreach { d =>
      commands foreach { c =>
        println("data: %s (%s), command takes: %s"
               .format(d, d.getClass.getSimpleName, c.fromClass.getSimpleName))
    
        if (d.getClass.isAssignableFrom(c.fromClass)) {
          println("    cmd(data) = " + c.execute.asInstanceOf[Any => Any](d))
        }
      }
    }
    

    The output is:

    data: StRiNG (String), command takes: String
        cmd(data) = string
    data: StRiNG (String), command takes: Date
    data: Sun Aug 05 14:46:17 CEST 2012 (Date), command takes: String
    data: Sun Aug 05 14:46:17 CEST 2012 (Date), command takes: Date
        cmd(data) = 1344170777681
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am confused, again, about implementing OOP in CodeIgniter. By design, I have two
For my OS class I have the assignment of implementing Unix's cat command with
I wrote a Valve for Apache Tomcat by extending org.apache.catalina.valves.ValveBase class and implementing inovoke()
Here is a related manager I wrote: class PortfolioItemManager(models.Manager): use_for_related_fields = True def extended(self):
Okay, so i have this code i wrote: class Connection { public static StreamWriter
I wrote a class that implements the IGroupPolicyObject Interface in COM. one of the
I wrote simple class that on the start it just increase the value of
I wrote this class that draws a animated progress with a circle (it draws
I am newbie. I wrote a class, that implements service and uses gps, but
I wrote a game class with coffeescript that displays a plain and a rotating

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.