Student 1
Student 1
package class_object;
class Student123 {
void display()
{
static void change() // a static method can access static only static
data members only
{
s3.display();
s4.display();
}
}
//output:
1 suraj SM
2 abc SM
3 pqr SM
4 suraj SM