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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:03:26+00:00 2026-05-30T14:03:26+00:00

I have the following piece of code public static void main(String[] args) { ArrayList<Integer>

  • 0

I have the following piece of code

public static void main(String[] args) {
        ArrayList<Integer> iList = new ArrayList();
        iList = returList();
        for (int i = 0; i < iList.size(); i++) {
            System.out.println(iList.get(i));
        }
    }

    public static ArrayList returList() {
        ArrayList al = new ArrayList();
        al.add("S");
        al.add(1);
        return al;
    }

now my query is why the Arraylist is accepting the raw arraylist object creation in line ‘ArrayList iList = new ArrayList();’ and the same case even from the method call return even.

Now, which type of data will be will be there and will Generics implies ? i see no compilation errors and this code is running fine even.

  • 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-05-30T14:03:28+00:00Added an answer on May 30, 2026 at 2:03 pm

    Because of the way Java generics are implemented (see Type Erasure for an introductory explanation) it is possible to create ‘raw’ type instances of generic classes and then cast them to a generic version as in your assignments to iList. This results in a compiler warning as it is a potentially unsafe operation. You can add any type you like to a raw ArrayList (it’s equivalent to ArrayList) but if you then cast it to a more specific generic type you may have an inconsistent collection.

    In your example you have created such a list in returList. However your code doesn’t exhibit this as println() doesn’t rely on the type of the list element passed to it. Add a line such as

    Integer val = iList.get(i);
    

    to your for loop and run your code and you will get a ClassCastException as your programme attempts to cast the string "s" to an Integer.

    When a generic collection is inconsistent you you won’t find out until you try to access the inconsistent elements using the generic type.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following piece of code in my DataModel.cs class: public User ValidateUser(string
I have the following piece of code pattern: void M1(string s, string v) {
I have a piece of code like follows public class Test{ public static void
I have following piece of code: public void ProcessRequest (HttpContext context) { context.Response.ContentType =
I have this following piece of code: public TimestampedRowStorage GetTimestampedRowStorage(string startTime, string endTime, long
I have the following piece of code: class Student { public: Student(){} void display()
Suppose I have the following piece of code public synchronized void method() { if(something
I have the following piece of code: public void AddHash( int val ) {
I have the following piece of code: class Foo { public Foo() { Bar
Let's say we have the following piece of code: public class Event { }

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.