📜  java代码示例中的sizeof

📅  最后修改于: 2022-03-11 14:52:42.101000             🧑  作者: Mango

代码示例1
/* There is no such method in the standard Java SE class library.
All primitive values have a predefined size, e.g. int is 4 bytes, 
char is 2 byte, short is 2 byte, long and float is 8 byte, and so on.
  
  A class to count sizeof primitive */
    
public class PrimitiveSizes {
   public static int sizeof(byte b) { return 1; } 
   public static int sizeof(short s) { return 2; }
   // etcetera
}