VC学习笔记1:按钮的使能与禁止用ClassWizard的Member Variables为按钮定义变量,如:m_Button1;则m_Button1.EnableWindow(true); 使按钮处于允许状态m_Button1.EnableWindow(false); 使按钮被禁止,并变灰显示VC...
分类:
其他好文 时间:
2014-08-11 09:58:01
阅读次数:
167
其实crbegin就相当于cbegin+rbegin.
关于这两个函数可以看我的上两篇博文。
public member function
std::vector::crbegin
const_reverse_iterator crbegin() const noexcept;
Return const_reverse_iterator to ...
分类:
其他好文 时间:
2014-08-11 08:27:33
阅读次数:
262
Simpsons’ Hidden TalentsTime Limit: 1000msMemory Limit: 32768KBThis problem will be judged onHDU. Original ID:259464-bit integer IO format:%I64d Java ...
分类:
其他好文 时间:
2014-08-11 00:15:41
阅读次数:
243
1.contentEditable属性
true时可直接编辑html元素里面的内容,且具有“可继承”的特点。
编辑后不要刷新页面,否则编辑的内容会丢失,可以通过该元素的innerHtml属性来获取编辑后的内容。
2.designMode属性
此属性相当于一个全局的contentEditable属性
3.hidden属性
可以替代css中的display,...
分类:
Web程序 时间:
2014-08-10 18:41:43
阅读次数:
201
error: 'transform' is not a member of 'std'labelReader.cpp:54:9:error:'transform' is not a member of 'std'build-binary.mk:386:recipe for target labelR...
分类:
移动开发 时间:
2014-08-10 12:35:20
阅读次数:
272
public member function
std::vector::rbegin
C++98
C++11
reverse_iterator rbegin() noexcept;
const_reverse_iterator rbegin() const noexcept;
Return reverse iterator...
分类:
其他好文 时间:
2014-08-09 23:22:42
阅读次数:
684
SecureCRT在Windows XP和Windows 7中的个人应用数据路径是不同的,在Windows 7中,应用数据路径为:C:\Users\\AppData(hidden)\Roaming\VanDyke\Config。 但以上是针对合法安装注册的用户,对于绿色携带版,尤其直接复制粘贴...
分类:
数据库 时间:
2014-08-09 22:57:59
阅读次数:
1530
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594
这题直接用KMP算法就可以做出来,不过我还尝试了用扩展的kmp,这题用扩展的KMP效率没那么高。
KMP算法:...
分类:
其他好文 时间:
2014-08-09 18:47:48
阅读次数:
221
public member function
std::vector::front
reference front();
const_reference front() const;
Access first element
访问第一个元素
Returns a reference to the first element in the vector....
分类:
其他好文 时间:
2014-08-09 18:45:48
阅读次数:
243
interface MyInterface{ void exposed();}class MyClass implements MyInterface{ public void exposed() {} public void hidden() {}}public static void main(...
分类:
编程语言 时间:
2014-08-09 04:53:06
阅读次数:
228