摘要: 普通窗口和对话框窗口的区别 普通窗口 自定义 调用 缺省函数 WndProc(...) { ...... DefWindowProc(...); } 对话框窗口 缺省调用自定义 对话框窗口 1. 对话框的分类 模式对话框 当对话框显示时,会禁止本进程的其他窗口的输入等用户交互操作。 无模式对话框 在 阅读全文
posted @ 2016-10-23 22:36 呉语伦比 阅读(238) 评论(0) 推荐(0)
摘要: Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". 这道题没什么难度,直接从两头往中间走,同时交换两边的字 阅读全文
posted @ 2016-10-23 18:32 呉语伦比 阅读(138) 评论(0) 推荐(0)