In Java, is there a performance difference between byte (keyword) and Byte (Object)?
package is.there.a.difference;
public class helpPlease {
public Byte objectByte;
public byte keywordByte;
}
In Java, is there a performance difference between byte (keyword) and Byte (Object)?
package is.there.a.difference;
public class helpPlease {
public Byte objectByte;
public byte keywordByte;
}