上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 41 下一页
摘要: 一、函数指针——基本形式 char Fun(int n) { return char(n); } //char(*pFun)(int); void main() { char(*pFun)(int); pFun = Fun; char c = (*pFun)(83); cout c; } 阅读全文
posted @ 2014-07-30 12:36 Clotho_Lee 阅读(638) 评论(0) 推荐(0)
摘要: 安装了Windows 7 Service Pack 1 (SP1) 或 Windows Server 2008 R2 Service Pack 1 (SP1)都会遇到此错误提示。 "Event filter with query "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA "Win32_Processor" AND TargetInstance.LoadPercentage > 99" could not be reactivated in namespace "//./root/CIMV2" because of error 0x80041003. Events cannot be delivered through this filter until the problem is corrected." 阅读全文
posted @ 2014-07-27 14:44 Clotho_Lee 阅读(2206) 评论(1) 推荐(0)
摘要: C/C++获取二维数组的大小/长度/元素个数 int p[5][6]; int lenTotal = sizeof(p) / sizeof(int); //30 int lenLow = sizeof(p[0]) / sizeof(int); //6 int lenHigh = lenTotal / lenLow; //5 阅读全文
posted @ 2014-07-26 16:54 Clotho_Lee 阅读(4160) 评论(0) 推荐(0)
摘要: 启动引导:EasyBCD 虚拟机:VirtualBox Linux:Zorin | Linux Mint(Mate) | Ubuntu 驱动工具:驱动精灵 | 鲁大师 虚拟光驱:DAEMON Tools Lite 系统设置:魔方5 压缩:2345好压 | 7-Zip 图片:2345看图王 输入法:紫光拼音输入法 字典:金山词霸 | 有道词典 PDF:极速PDF阅读器 安全:360 浏览器:Chrome 下载:迅雷极速版 聊天:QQ国际版 音乐:千千静听 视频:射手影音播放器 文本编辑:Notepad++ 办公套件:WPS Office | LibreOffice 思维导图:XMind C#:Visual Studio express + PerfView C++:Visual Studio express | Code::Blocks | Eclipse CDT Java:Eclipse 数据库:SQL Server express | MySQL 阅读全文
posted @ 2014-07-17 01:40 Clotho_Lee 阅读(287) 评论(0) 推荐(0)
摘要: C:\Users\系统用户名\AppData\Local\Microsoft\VisualStudio\VS版本号\Extensions\VAX插件目录\ 阅读全文
posted @ 2014-07-12 20:19 Clotho_Lee 阅读(7333) 评论(0) 推荐(3)
摘要: Visual Studio 2013的右上角有反馈、通知、登录、快速启动等按钮,在VS2013中没有选项可以设置为隐藏。 打开注册表(开始 -> 运行 -> regedit),展开到以下路径: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0_Config\MainWindowFrameControls 删除该目录下对应的子目录(点击子目录就能看到对应的按钮名字) 阅读全文
posted @ 2014-07-10 22:04 Clotho_Lee 阅读(1663) 评论(0) 推荐(0)
摘要: 如果是KDM、GDM、LightDM,打开~/.xprofile。如果是startx、Slim,打开~/.xinitrc。(没有就新建一个) export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx" 或 export GTK_IM_MODULE=xim 阅读全文
posted @ 2014-06-30 20:04 Clotho_Lee 阅读(829) 评论(0) 推荐(0)
摘要: sudo passwd root 阅读全文
posted @ 2014-06-30 16:46 Clotho_Lee 阅读(269) 评论(0) 推荐(0)
摘要: su cd /etc/apt wget http://mirrors.163.com/.help/sources.list.lucid mv sources.list sources.list.backup mv sources.list.lucid sources.list apt-get update apt-get dist-upgrade 阅读全文
posted @ 2014-04-03 13:04 Clotho_Lee 阅读(8468) 评论(0) 推荐(3)
摘要: 开始 -> 运行 -> gpedit.msc -> 计算机配置 -> 管理模板 -> Windows 组件 -> Windows Media Player -> 防止媒体共享 阅读全文
posted @ 2014-02-08 10:42 Clotho_Lee 阅读(1495) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 41 下一页