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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:24:30+00:00 2026-06-08T17:24:30+00:00

In the following code, I see no way in which T1 and T3 are

  • 0

In the following code, I see no way in which T1 and T3 are different. Certainly my calculator says they are not.

public class longTest {
    public static final long T1 = 24 * 60 * 60 * 1000 * 30;
    public static final long T2 = 24 * 60 * 60 * 1000;
    public static final long T3 = T2 * 30;

    public static void main(String[] args) {

        System.out.println(T1);
        System.out.println(T2);
        System.out.println(T3);
    }
}

So why do I get output of:

-1702967296
86400000
2592000000

It’s not just System.out.println in this sample program either. When I have T1 in eclipse and mouse over the variable I get a gloss showing the same values.

java version “1.6.0_33” OSX

  • 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-08T17:24:31+00:00Added an answer on June 8, 2026 at 5:24 pm

    As paranoid-android says, it’s an int overflow issue. To understand why T3 is different, see below.

    public static final long T1 = 24 * 60 * 60 * 1000 * 30;
    

    All the numbers here are ints so this is the same as

    public static final long T1 = (long) (24 * 60 * 60 * 1000 * 30);
    

    The int part overflows, so the implicit cast to long arrives too late to avoid loss of precision.
    In

    public static final long T2 = 24 * 60 * 60 * 1000;
    

    you have the same but its a smaller number that fits in both a 32 bit int (31 bits for positive values) and in a 64 bit long.

    public static final long T3 = T2 * 30;
    

    This multiplies a long by an int so does 64 bit arithmetic which is why it has a different value.
    It’s equivalent to

    public static final long T3 = T2 * (long) 30;
    

    The implicit long here is early enough to prevent loss of precision.

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

Sidebar

Related Questions

See following code with resides in fillowing directory mypack.pack1 package mypack.pack1; public class myclass
See the following code of the <?php class DefaultController extends Controller { public function
How can I implement cross browser opacity gradient (not color gradient)? See following code:
The following code does not want to compile. See the included error message. Code:
When I compile the following code, I only see the error during Run-time which
I wrote the following sample code to see how ARC works @property (nonatomic, weak)
Please see the following code: List list = Collections.synchronizedList(new ArrayList()); // ... synchronized (list)
i have written the following code: As you can see there is a for
I have the following code on my page. http://jsfiddle.net/SO_AMK/r7ZDm/ As you see it's a
I m having the following code, however, I can see that the radio button

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.