एक चरित्र वर्ग एक ऑब्जेक्ट . का उपवर्ग है और यह किसी वस्तु में आदिम प्रकार के चार का मान लपेटता है। कैरेक्टर प्रकार के ऑब्जेक्ट में एक ही फ़ील्ड होता है जिसका प्रकार char . होता है . हम getType() . का उपयोग करके किसी विशेष वर्ण के लिए यूनिकोड श्रेणी निर्धारित कर सकते हैं तरीका। यह चरित्र . की एक स्थिर विधि है वर्ग और यह एक पूर्णांक . देता है चार का मान ch यूनिकोड सामान्य श्रेणी में प्रतिनिधित्व।
सिंटैक्स
public static int getType(char ch)
उदाहरण
public class CharacterTypeTest { public static void main(String args[]) { System.out.println("T represnts unicode category of: " + Character.getType('T')); System.out.println("@ represnts unicode category of: " + Character.getType('@')); System.out.println(") represnts unicode category of: " + Character.getType(')')); System.out.println("1 represnts unicode category of: " + Character.getType('1')); System.out.println("- represnts unicode category of: " + Character.getType('-')); System.out.println("_ represnts unicode category of: " + Character.getType('_')); System.out.println("a represnts unicode category of: " + Character.getType('a')); } }
आउटपुट
T represnts unicode category of: 1 @ represnts unicode category of: 24 ) represnts unicode category of: 22 1 represnts unicode category of: 9 - represnts unicode category of: 20 _ represnts unicode category of: 23 a represnts unicode category of: 2