摘要:
Trident代表 Internet ExplorerTasman代表 IE for MacKHTML代表 KonquerorWebKit代表 Safari、Chrome、Web(Epiphany)Gecko代表 FirefoxPresto代表 Opera可以通过JS的 navigator.userAgent 获得浏览器相关信息。 阅读全文
摘要:
#include <stdio.h>void f() { printf("function\n"); }#define f() printf("macro\n")int main() { f(); // macro (f)(); // function return 0;}函数名加括号 阅读全文