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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T23:21:35+00:00 2026-06-06T23:21:35+00:00

I’ve got the following types class Translator[To <: Language] { … } abstract class

  • 0

I’ve got the following types

class Translator[To <: Language] { ... }
abstract class Language
object English extends Language
object German extends Language

Is there a way to instantiate Translator from a val that is either of type English or German?

I’m looking for something like the following (which doesn’t work):

val lang = if (someCondition) English else German
val translator = new Translator[classOf[lang]]
  • 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-06T23:21:37+00:00Added an answer on June 6, 2026 at 11:21 pm

    use the language as type argument in Translator constructor:

    class Translator[To <: Language](lang:To) {...}
    abstract class Language
    object English extends Language
    object German extends Language
    
    new Translator(German)
    res7: Translator[German.type] = Translator@8beab46
    
    // using class instead of object:
    class Italian extends Language
    new Translator(new Italian)
    res9: Translator[Italian] = Translator@6bc22f58
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say we've got the following two classes: abstract class Foo { public abstract function
I got following error... System.NullReferenceException: Object reference not set to an instance of an
I got the following code to generate a DLL : public class QtObject :
I got the following code that generates a DLL : public class MyObject :
Let's say that I've got the following class hierarchy : public static class Constants
I'm using Castle Windsor, and I've got the following: public class NhibernateRepository<T> : IRepository<T>
Say I've got a class like the following: public ref class MyClass {}; I
I got the following code that generate a DLL (sample exemple) : public class
i've got this code: public <T extends Scrapper> Class<T> getScrapper() { return MyScrapper.class; }
I've got an Mutable NSArray storing object types (ids - NSNumber, NSString) that will

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.