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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:01:01+00:00 2026-06-10T02:01:01+00:00

I looked in this question to understand why there is no arithmetic left shift

  • 0

I looked in this question to understand why there is no arithmetic left shift operator in most languages including Java . But then how do we deal with negative integers because left shifting would throw it away . Take for example -2^5 where the result should be negative .

  • 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-10T02:01:02+00:00Added an answer on June 10, 2026 at 2:01 am

    No, the sign bit will never be thrown out by left shift unless you commit an overflow. Reason? In two’s complement encoding the negative number has all ones on te left side, where a positive number would have all zeros. It’s like the sign bit is replicated to the right. BTW this is exactly why the term “sign extension” makes sense, which is how the default right-shift works in Java.

      int i = -1;
      System.out.format("%3d = %s\n", i, Integer.toBinaryString(i));
      i <<= 5;
      System.out.format("%3d = %s\n", i, Integer.toBinaryString(i));
    

    prints

     -1 = 11111111111111111111111111111111
    -32 = 11111111111111111111111111100000
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've looked at this question: Select first instance only with XPath? But if I
I've looked at other questions on Stack Overflow related to this question, but none
This looked like a very simple question but I couldn't find the answer. How
So I'm sure this is a stupid question, but I've looked through Python's documentation
This might be a very vague question but I guess I don't really understand
I am re-hashing this question because I have looked at over 50 threads in
I have looked around on Google and StackOverflow for the answer to this question,
I've looked around and couldn't find a distinct answer to this question. So I'm
Hi and thanks for looking at this newbi question. I have looked for anykind
This might be a really dumb question, however I've looked around online, etc. And

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.