當前位置: 首頁>>代碼示例>>Java>>正文


Java KeyEvent.VK_T屬性代碼示例

本文整理匯總了Java中java.awt.event.KeyEvent.VK_T屬性的典型用法代碼示例。如果您正苦於以下問題:Java KeyEvent.VK_T屬性的具體用法?Java KeyEvent.VK_T怎麽用?Java KeyEvent.VK_T使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在java.awt.event.KeyEvent的用法示例。


在下文中一共展示了KeyEvent.VK_T屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getKeyCode

private int getKeyCode(char alpha) {
    switch (alpha) {
        case 'a':
            return KeyEvent.VK_A;
        case 'b':
            return KeyEvent.VK_B;
        case 'c':
            return KeyEvent.VK_C;
        case 'd':
            return KeyEvent.VK_D;
        case 'e':
            return KeyEvent.VK_E;
        case 'f':
            return KeyEvent.VK_F;
        case 'g':
            return KeyEvent.VK_G;
        case 'h':
            return KeyEvent.VK_H;
        case 'i':
            return KeyEvent.VK_I;
        case 'j':
            return KeyEvent.VK_J;
        case 'k':
            return KeyEvent.VK_K;
        case 'l':
            return KeyEvent.VK_L;
        case 'm':
            return KeyEvent.VK_M;
        case 'n':
            return KeyEvent.VK_N;
        case 'o':
            return KeyEvent.VK_O;
        case 'p':
            return KeyEvent.VK_P;
        case 'q':
            return KeyEvent.VK_Q;
        case 'r':
            return KeyEvent.VK_R;
        case 's':
            return KeyEvent.VK_S;
        case 't':
            return KeyEvent.VK_T;
        case 'u':
            return KeyEvent.VK_U;
        case 'v':
            return KeyEvent.VK_V;
        case 'w':
            return KeyEvent.VK_W;
        case 'x':
            return KeyEvent.VK_X;
        case 'y':
            return KeyEvent.VK_Y;
        case 'z':
            return KeyEvent.VK_Z;
        case '1':
            return KeyEvent.VK_1;
        case '2':
            return KeyEvent.VK_2;
        case '3':
            return KeyEvent.VK_3;
        case '4':
            return KeyEvent.VK_4;
        case '5':
            return KeyEvent.VK_5;
        case '6':
            return KeyEvent.VK_6;
        case '7':
            return KeyEvent.VK_7;
        case '8':
            return KeyEvent.VK_8;
        case '9':
            return KeyEvent.VK_9;
        case '0':
            return KeyEvent.VK_0;
        case ',':
            return KeyEvent.VK_COMMA;
        case ' ':
            return KeyEvent.VK_SPACE;
    }
    return KeyEvent.VK_SPACE;
}
 
開發者ID:shivam301296,項目名稱:WhatsappCrush,代碼行數:81,代碼來源:WhatsappCrushGUI.java


注:本文中的java.awt.event.KeyEvent.VK_T屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。