// Requires positive x static int stringSize(int x) { for (int i=0; ; i++) if (x <= sizeTable[i]) return i+1; } 源码如下
没有写public,这个方法就是私有的。