pr34651.c
来自「用于进行gcc测试」· C语言 代码 · 共 26 行
C
26 行
/* { dg-do compile } */typedef bool Bool;struct CString { CString (const char * =__null); CString & operator += (const CString &);};struct THotKey { short Key; Bool Control; Bool Shift; Bool Alt;};THotKey m_HotKey;THotKey GetHotKey () { return m_HotKey; }void Serialize (){ THotKey inHotKey (GetHotKey()); CString outCombinaison (inHotKey.Control ? ((inHotKey.Alt || inHotKey.Shift) ? "ctrl+" : "ctrl") : __null); outCombinaison += inHotKey.Alt ? inHotKey.Shift ? "alt+" : "alt" : ""; outCombinaison += inHotKey.Shift ? "shift" : "";}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?