Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

276
Views
Type mismatch: cannot convert from element type Object to String(Generics)

Hi I am playing with generics a suddenly found a issue where i am getting compile time error :

Type mismatch: cannot convert from element type Object to String

import java.util.*;

public class A<T> {
    private final T first;

    public A(T first) {
        this.first = first;

    }
    public List<String> stringList() {
        return Arrays.asList(String.valueOf(first));
    }

    public static void main(String[] args) {
        A p = new A<Object>("TEST");
        for (String s : p.stringList())
            System.out.print(s + " ");
    }
}

I am unable to understand this behavior as String is Object and compiler should understand that, can someone explain this?

over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!