Java程序  |  16行  |  319 B

// Copyright 2008 The Android Open Source Project

package other;

/*
 * Declare a few fields to reflect upon.
 */
public class OtherPackage {
    public char pubCharField = 0x8765;

    protected short protShortField = 0x1234;
    protected Object protObjectField = "blah";

    double pkgDoubleField = 3.141592654;
}