Java Swing Tutorial - Java Font.hashCode()








Syntax

Font.hashCode() has the following syntax.

public int hashCode()

Example

In the following code shows how to use Font.hashCode() method.

import java.awt.Font;
import java.awt.Graphics;
//from w ww . j  a v a2s .  c o  m
import javax.swing.JFrame;

public class Main extends JFrame {

  public static void main(String[] a) {
    Main f = new Main();
    f.setSize(300, 300);
    f.setVisible(true);
  }

  public void paint(Graphics g) {
    Font f = g.getFont();
    
    System.out.println(f.hashCode());

     

    g.drawString("java2s.com", 4, 16);
  }
}