SWING
SWING
What is JFC
Simple Example:-
import javax.swing.*;
public class FirstSwing{
public static void main(String[] args){
JFrame f = new JFrame(); //Creating
instance of JFrame
b.setBounds(130,100,100,40);// x axis,
y axis, width, height
Serialization
Deserialization
import java.io.Serializable;
public class Student implements
Serializable{
int id;
String name;
Public Student (int id, String name)
{
this.id = id;
this.name = name;
}
}