<tfoot id='Ct89J'></tfoot>
    1. <legend id='Ct89J'><style id='Ct89J'><dir id='Ct89J'><q id='Ct89J'></q></dir></style></legend>
    2. <i id='Ct89J'><tr id='Ct89J'><dt id='Ct89J'><q id='Ct89J'><span id='Ct89J'><b id='Ct89J'><form id='Ct89J'><ins id='Ct89J'></ins><ul id='Ct89J'></ul><sub id='Ct89J'></sub></form><legend id='Ct89J'></legend><bdo id='Ct89J'><pre id='Ct89J'><center id='Ct89J'></center></pre></bdo></b><th id='Ct89J'></th></span></q></dt></tr></i><div id='Ct89J'><tfoot id='Ct89J'></tfoot><dl id='Ct89J'><fieldset id='Ct89J'></fieldset></dl></div>

      1. <small id='Ct89J'></small><noframes id='Ct89J'>

          <bdo id='Ct89J'></bdo><ul id='Ct89J'></ul>

        在 Java 中检查字符是否为元音的最佳方法是什么

        时间:2023-07-28

          <i id='6lsLY'><tr id='6lsLY'><dt id='6lsLY'><q id='6lsLY'><span id='6lsLY'><b id='6lsLY'><form id='6lsLY'><ins id='6lsLY'></ins><ul id='6lsLY'></ul><sub id='6lsLY'></sub></form><legend id='6lsLY'></legend><bdo id='6lsLY'><pre id='6lsLY'><center id='6lsLY'></center></pre></bdo></b><th id='6lsLY'></th></span></q></dt></tr></i><div id='6lsLY'><tfoot id='6lsLY'></tfoot><dl id='6lsLY'><fieldset id='6lsLY'></fieldset></dl></div>
        1. <small id='6lsLY'></small><noframes id='6lsLY'>

          • <tfoot id='6lsLY'></tfoot>
                <tbody id='6lsLY'></tbody>

                <legend id='6lsLY'><style id='6lsLY'><dir id='6lsLY'><q id='6lsLY'></q></dir></style></legend>
                • <bdo id='6lsLY'></bdo><ul id='6lsLY'></ul>
                • 本文介绍了在 Java 中检查字符是否为元音的最佳方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试检查某个 char 是否是元音.这样做的最佳方法是什么?

                  I'm trying to check if a certain char is a vowel. What's the best way to go about doing this?

                  推荐答案

                  这是我已经使用了一段时间的解决方案,它还没有让我失望:

                  Here's the solution I've been using for a while, and it hasn't let me down yet:

                  private static String VOWELS = "AÀÁÂÃÄÅĀĂĄǺȀȂẠẢẤẦẨẪẬẮẰẲẴẶḀÆǼEȄȆḔḖḘḚḜẸẺẼẾỀỂỄỆĒĔĖĘĚÈÉÊËIȈȊḬḮỈỊĨĪĬĮİÌÍÎÏIJOŒØǾȌȎṌṎṐṒỌỎỐỒỔỖỘỚỜỞỠỢŌÒÓŎŐÔÕÖUŨŪŬŮŰŲÙÚÛÜȔȖṲṴṶṸṺỤỦỨỪỬỮỰYẙỲỴỶỸŶŸÝ";
                  private static boolean isVowel(char c)
                  {
                      return VOWELS.indexOf(Character.toUpperCase(c)) >= 0;
                  }
                  

                  对于我的应用程序来说,它相当快.

                  For my applications, it's reasonably fast.

                  这篇关于在 Java 中检查字符是否为元音的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:为什么我的 char 打印为数字而不是字符? 下一篇:为什么我需要在 byte 和 short 上显式转换 char 原语

                  相关文章

                  最新文章

                    <i id='UV0lD'><tr id='UV0lD'><dt id='UV0lD'><q id='UV0lD'><span id='UV0lD'><b id='UV0lD'><form id='UV0lD'><ins id='UV0lD'></ins><ul id='UV0lD'></ul><sub id='UV0lD'></sub></form><legend id='UV0lD'></legend><bdo id='UV0lD'><pre id='UV0lD'><center id='UV0lD'></center></pre></bdo></b><th id='UV0lD'></th></span></q></dt></tr></i><div id='UV0lD'><tfoot id='UV0lD'></tfoot><dl id='UV0lD'><fieldset id='UV0lD'></fieldset></dl></div>
                    1. <small id='UV0lD'></small><noframes id='UV0lD'>

                      <tfoot id='UV0lD'></tfoot>
                    2. <legend id='UV0lD'><style id='UV0lD'><dir id='UV0lD'><q id='UV0lD'></q></dir></style></legend>

                        <bdo id='UV0lD'></bdo><ul id='UV0lD'></ul>