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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:28:50+00:00 2026-06-17T08:28:50+00:00

I am trying to understand the difference between index = index–; and index=–index; I

  • 0

I am trying to understand the difference between index = index--; and index=--index; I checked the output of index = index--; assignment in the below code block (first example):

public static void main(String[] args) {
    int index = 10;
    for (int i = 0; i < 10; i++) {
        index = index--;
        System.out.println("Index:" + index);
    }//end of for loop
}// end of main method

Output:

Index:10
Index:10
Index:10
Index:10
Index:10
Index:10
Index:10
Index:10
Index:10
Index:10

When I use the index=--index; assignment (second example)

public static void main(String[] args) {
        int index = 10;
        for (int i = 0; i < 10; i++) {
            index = --index;
            System.out.println("Index:" + index);
        }
    }// end of main method

Output:

Index:9
Index:8
Index:7
Index:6
Index:5
Index:4
Index:3
Index:2
Index:1
Index:0

I have two questions. In the second example Eclipse throws a warning: assignment index = --index;(The assignment to variable index has no effect) But actually it does have an effect on the variable. It decreases its value by 1. Why does Eclipse gives such a warning message?

In the first example, the variable is not affected by the operation (and Eclipse gives no warning). I wonder why Eclipse has no message, and I don’t understand why this assignment has no effect over the variable index index = index--;

  • 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-17T08:28:51+00:00Added an answer on June 17, 2026 at 8:28 am

    Both = and -- alter the value of index. In the case of Java, the -- is guaranteed to happen before the =, so in the case of index = index--; the return value of -- is the old value of index and overwrites the decrement of index while in the case of index = --index; the return value of -- is already the new value of index so the assignment has no effect and index stays decremented.

    Note that in C the statement index = index--; has undefined behaviour and compilers are allowed to decrement index, ignore it or write code that reformats your hard disk (although the latter case is extremely unlikely).

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

Sidebar

Related Questions

I am trying to understand the difference between these two links: The first one
I'm trying to understand the difference between the Decorator and Singleton Pattern. For example,
I'm trying to understand the difference between a squash and a rebase. As I
I am trying to understand the difference between this: if (isset($_POST['Submit'])) { //do something
I'm trying to understand the difference between sequences and lists. In F# there is
I am trying to understand the difference between 2 methods that have the same
I am trying to understand the difference between this list: UIRequiredDeviceCapabilities and individual keys
I'm really trying to understand the difference between OpenID and OAuth? Maybe they're two
Possible Duplicate: Difference between (function(){})(); and function(){}(); I am trying to understand a few
Been trying my best to understand this correctly. What is the difference between an

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.