The number returned by Font.getNumGlyphs()
问题 What does the number returned by Font.getNumGlyphs() actually represent? The docs. state: Returns the number of glyphs in this Font . Glyph codes for this Font range from 0 to getNumGlyphs() - 1 . I thought it represented the number of code points between 0 and Character.MAX_CODE_POINT for which Font.canDisplay(codePoint) returned true . But the output of the code below suggests otherwise. Code Note: Going through 1 million+ code points (the countGlyphs method) for over 200 fonts takes near