কম্পিউটার

জাভা ক্যারেক্টার charCount() উদাহরণ সহ


Character.charCount() পদ্ধতি নির্দিষ্ট অক্ষর (ইউনিকোড কোড পয়েন্ট) উপস্থাপন করার জন্য প্রয়োজনীয় char মানগুলির সংখ্যা নির্ধারণ করে। যদি নির্দিষ্ট অক্ষরটি 0x10000 এর সমান বা তার বেশি হয়, তবে পদ্ধতিটি 2 প্রদান করে। অন্যথায়, পদ্ধতিটি 1 প্রদান করে।

উদাহরণ

আসুন এখন একটি উদাহরণ দেখি -

import java.lang.*;
public class Demo {
   public static void main(String[] args) {
      // create and assign values to int codepoint cp
      int cp = 0x12345;
      // create an int res
      int res;
      // assign the result of charCount on cp to res
      res = Character.charCount(cp);
      String str1 = "It is not a valid supplementary character";
      String str2 = "It is a valid supplementary character";
      // print res value
      if ( res == 1 ) {
         System.out.println( str1 );
      } else if ( res == 2 ) {
         System.out.println( str2 );
      }
   }
}

আউটপুট

It is a valid supplementary character

উদাহরণ

আসুন আরেকটি উদাহরণ দেখি -

import java.lang.*;
public class Demo {
   public static void main(String[] args) {
      int c = 0x11987;
      int res = Character.charCount(c);
      System.out.println(res);
   }
}

আউটপুট

2

  1. উদাহরণ সহ জাভাতে প্যাটার্ন প্যাটার্ন() পদ্ধতি

  2. উদাহরণ সহ Java toDegrees() পদ্ধতি

  3. জাভা স্ট্রীম findAny() উদাহরণ সহ

  4. উদাহরণ সহ জাভা অ্যারেলিস্ট পদ্ধতি