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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T01:34:08+00:00 2026-06-11T01:34:08+00:00

Any one have idea how to generate id starting from 1 so that the

  • 0

Any one have idea how to generate id starting from 1 so that the next object has 2 and so on?

I have trying the following but dose not work:

class students{

    private int id;
    private String name;

    public student(String name){
        this.id=id++;
        this.name
    }
}
  • 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-11T01:34:09+00:00Added an answer on June 11, 2026 at 1:34 am

    You need a static class member to keep track of the last-used index. Be sure to also implement a copy constructor:

    class students
    {
        private static int next_id = 0;   // <-- static, class-wide counter
    
        private int id;                   // <-- per-object ID
    
        private String name;
    
        public students(String name)
        {
            this.id = ++students.next_id;
            this.name = name;
    
            // ...
        }
    
        public students(students rhs)
        {
            this.id = ++students.next_id;
            this.name = rhs.name;
    
            // ...
        }
    
        public static void reset_counter(int n)  // use with care!
        {
            students.next_id = n;
        }
    
        // ...
    }
    

    Update: As @JordanWhite suggest, you might like to make the static counter atomic, which means that it will be safe to use concurrently (i.e. in multiple threads at once). To that end, change the type to:

    private static AtomicInteger next_id = new AtomicInteger(0);
    

    The increment-and-read operation and the reset operation become:

    this.id = students.next_id.incrementAndGet();  // like "++next_id"
    
    students.next_id.set(n);                       // like "next_id = n"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does any one have an idea how to generate and populate nested tables with
I missed my workspace in which I was working. Any one have idea about
Any one have an idea to share running multiple tomcats on single machine with
Does any one have any idea why this would be happening? This is some
I have no idea why any one would do this (include support for Lists
I was trying to generate type library from one of PSDK shipped IDL files,
Anyone have idea how to pass value from iPhone application to the REST-Webservice using
Anyone have any idea why my jQuery carousel is working fine at the bottom
Anyone have any idea how to connect to their FTP server? I am using
Anyone have any idea how I would go about converting a timestamp in milliseconds

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.