Code: Select all
record Student(int id, String... subjects) implements java.io.Serializable{
public static final String serialVersionUID = 0; // error: incompatible types: int cannot be converted to String
}
Moderators: Site Manager, fjwalraven
Code: Select all
record Student(int id, String... subjects) implements java.io.Serializable{
public static final String serialVersionUID = 0; // error: incompatible types: int cannot be converted to String
}
Users browsing this forum: No registered users and 5 guests