Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / October 2006

Tip: Looking for answers? Try searching our database.

converting long to short array....

Thread view: 
Dinesh - 19 Oct 2006 13:45 GMT
HELLO.....I M NOT ABLE TO GET WHAT IS THE PROBLEM WITH MY
PROGRAM....PLZ LET ME KNOW THAT
class LtoSa
{

    public static void main(String args[])
    {
        long l = Long.parseLong(args[0]);
        short[] buf1 = new short[4];
        //for(short s1 = (short)9999;s1<=9999;s1++)
        //{

        buf1[0]=(short)((l & 0xffff000000000000l)>>48);
        buf1[1]=(short)((l & 0x0000ffff00000000l)>>32);
        buf1[2]=(short)((l & 0x00000000ffff0000l)>>16);
        buf1[3]=(short) (l & 0x000000000000ffffl);
            //buf[1] = 0;

        //System.out.print(s1+":\t");
            for(int j = 0; j<4;j++)
            {
                System.out.print(buf1[j]+"\t");
            }

            System.out.println();
        //}

        l |= buf1[0] & 0xFFFF;
        l <<= 16;
        l |= buf1[1] & 0xFFFF;
        l <<= 16;
        l |= buf1[2] & 0xFFFF;
        l <<= 16;
        l |= buf1[3] & 0xFFFF;
       
        System.out.println("Long value:"+l);
       
       
    }
}
Thomas Schodt - 19 Oct 2006 14:12 GMT
>         l  = 0;
or
>         l  = buf1[0] & 0xFFFF;
>         l <<= 16;
[quoted text clipped - 3 lines]
>         l <<= 16;
>         l |= buf1[3] & 0xFFFF;
Lew - 20 Oct 2006 06:53 GMT
> HELLO.....I M NOT ABLE TO GET WHAT IS THE PROBLEM WITH MY
> PROGRAM....PLZ LET ME KNOW THAT

"Plz" don't shout.

> class LtoSa

Why not public?

> {
>
>     public static void main(String args[])
>     {
>         long l = Long.parseLong(args[0]);

'l' (the letter 'ell') is a terrible choice for a variable name, since in many
fonts it looks just like the numeral '1' (one).

>         short[] buf1 = new short[4];
>         //for(short s1 = (short)9999;s1<=9999;s1++)

If uncommented, this would be a loop of one pass.  For SSCCEs on Usenet it is
best to trim this type of comment.  Otherwise, what point are you making by
leaving the comment in?

>         //{
>
>         buf1[0]=(short)((l & 0xffff000000000000l)>>48);

The final 'ell' of the long constant should be upper case so that it doesn't
look like a 'one'.

>         buf1[1]=(short)((l & 0x0000ffff00000000l)>>32);
>         buf1[2]=(short)((l & 0x00000000ffff0000l)>>16);
[quoted text clipped - 11 lines]
>
>         l |= buf1[0] & 0xFFFF;

buf1 [0] is already a short, so ANDing it with 0xFFFF doesn't really do anything.

'ell' was not cleared before the |=, so the |= of buf1 [0] combines the high
short of the original value with the low short of the original value.

Since the left side of the assignment is a long, the right side will be
widened to long, which for negative values of the short value has the side
effect of setting the high 48 bits of 'ell' to all ones.

>         l <<= 16;
>         l |= buf1[1] & 0xFFFF;

Here, if buf1 [1] is negative, the high 48 bits of 'ell' will all be set to
ones, thus wiping the information from the ORing of buf1 [0].  This would also
leave the high 16 bits set after the next two steps regardless of the values
of buf1 [2] or buf1 [3].

>         l <<= 16;
>         l |= buf1[2] & 0xFFFF;

Likewise, a negative buf1 [2] will set the high 48 bits, guaranteeing that the
high 32 will remain set in the end.

>         l <<= 16;
>         l |= buf1[3] & 0xFFFF;

Likewise, a negative buf1 [3] will set the high 48 bits.

>        
>         System.out.println("Long value:"+l);

A very restricted set of initial values for 'ell' will match the resulting value.

>     }
> }

I was able to compile and run the program pretty much as you presented it,
save that I declared the class public, and put it in a package 'testit.

$ java -cp . testit.LtoSa 14135935696
0       3       19089   17104
Long value:4814348015794995920

There is no "problem with [the] program" if you intended the behavior it
evinces.  You did not tell us the intent of the program.

- Lew
Patricia Shanahan - 20 Oct 2006 14:11 GMT
...
>>         l <<= 16;
>>         l |= buf1[1] & 0xFFFF;
[quoted text clipped - 3 lines]
> would also leave the high 16 bits set after the next two steps
> regardless of the values of buf1 [2] or buf1 [3].
...

This comment seems to ignore the effect of "& 0xffff". Because of it,
only the least significant 16 bits of the right hand side of the |= can
ever be non-zero, regardless of the value of buf1[1].

This program:

public class TestLongBits {
  public static void main(String[] args) {
    long i = 0x42;
    short buff = -3;
    i <<= 16;
    i |= buff & 0xffff;
    System.out.println(Long.toHexString(i));
  }
}

prints:

42fffd

Patricia
Patricia Shanahan - 20 Oct 2006 14:16 GMT
...
>>         l |= buf1[0] & 0xFFFF;
>
> buf1 [0] is already a short, so ANDing it with 0xFFFF doesn't really do
> anything.

Ah, I didn't notice this comment, which explains the confusion about the
"& 0xffff" later.

The short gets converted to int, due to binary numeric promotion, before
evaluation of the "&". Suppose the short is -3, 0xFFFD. The conversion
produces 0xFFFFFFFD. The & result is 0x0000FFFD. It is then promoted to
long getting 0x000000000000FFFD.

Patricia
Lew - 21 Oct 2006 01:39 GMT
> ...
>>>         l |= buf1[0] & 0xFFFF;
[quoted text clipped - 11 lines]
>
> Patricia

Duhy!!

I am never too old to learn.  Thanks, Patricia.

- Lew


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.