stringconst2.java 413 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Test to make sure a string constant is correctly initialized.

import java.lang.reflect.*;

public class stringconst2
{
  public static final String q = "zardoz";

  public static void main (String[] args)
  {
    try
      {
	Class k = Class.forName ("stringconst2");
	Field f = k.getField ("q");
	System.out.println (f.get (null));
      }
17
    catch (Throwable t)
Tom Tromey committed
18
      {
19
	t.printStackTrace();
Tom Tromey committed
20 21 22
      }
  }
}