大约有 3,000 项符合查询结果(耗时:0.0127秒) [XML]

https://www.tsingfun.com/it/cpp/1120.html 

FAT32系统中长文件名的存储 - C/C++ - 清泛网 - 专注C/C++及内核技术

...名还可以读,但长文件名如果没有对应的短文件名,不管什么系统都将忽略其存在。所以短文件名是至关重要的。 在不支持长文件名的环境中对短文件名中的文件名和扩展名字段作更改(包括删除,因为删除是对首字符改写E5...
https://www.tsingfun.com/it/bigdata_ai/341.html 

搭建高可用mongodb集群(二)—— 副本集 - 大数据 & AI - 清泛网 - 专注C/...

... setSlaveOk。 2、在程序中设置副本节点负责读操作,如下代码: public class TestMongoDBReplSetReadSplit { public static void main(String[] args) { try { List addresses = new ArrayList(); ServerAddress addre...
https://www.fun123.cn/referenc... 

Popup弹出菜单扩展 · App Inventor 2 中文网

...前主题定义决定。如果使用MenuTextColor指定颜色,超文本代码中的颜色规范将不再正确工作。如果要为超文本区域着色,应将MenuTextColor设置为Default。 菜单的背景色是Black或White。使用Default时,背景色由当前主题定义决定。 注意...
https://www.fun123.cn/referenc... 

Popup弹出菜单扩展 · App Inventor 2 中文网

...前主题定义决定。如果使用MenuTextColor指定颜色,超文本代码中的颜色规范将不再正确工作。如果要为超文本区域着色,应将MenuTextColor设置为Default。 菜单的背景色是Black或White。使用Default时,背景色由当前主题定义决定。 注意...
https://www.tsingfun.com/it/cpp/1231.html 

MFC AFX_WM_CREATETOOLBAR消息相关 - C/C++ - 清泛网 - 专注C/C++及内核技术

...有自定义按钮): 以上均为MFC MDI多窗口默认生成的代码,大家可以多调试研究。AFX_WM_CREATETOOLBAR EnablePaneMenu EnableCustomizeButton
https://www.tsingfun.com/it/cpp/1424.html 

VC/MFC 临界区域使用方法实例 - C/C++ - 清泛网 - 专注C/C++及内核技术

...。 Windows 98没有可以使用的TryEnterCriticalSection函数的实现代码。调用该函数总是返回FALSE。 PS:可以定义不同的临界区域对象(CRITICAL_SECTION)来锁定不同的共享资源,使用方法就是传递不同的参数对象,如m_cs_test。 临界区域 CRI...
https://www.tsingfun.com/it/cpp/1434.html 

stl 字符串std::string作为std::map主键key的实例 - C/C++ - 清泛网 - 专注C/C++及内核技术

...串作为key的常见用法,并使用find_if实现map按value查找。代码如下: #include <map> #include <string> #include <algorithm> using namespace std; class map_value_finder { public: map_value_finder(const std::string &cmp_string):m_s_cmp_string(cmp_string){} boo...
https://www.tsingfun.com/it/te... 

8 种提升 ASP.NET Web API 性能的方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...就是说你可以从DataReader去提取多个结果集 参见以下演示代码: // read the first resultset var reader = command.ExecuteReader(); // read the data from that resultset while (reader.Read()) { suppliers.Add(PopulateSupplierFromIDataReader( reader )); } ...
https://www.tsingfun.com/it/tech/2084.html 

宽度默认980px?手机浏览器及pc浏览器width自适应问题 - 更多技术 - 清泛网...

...单的方法可以在 head 标签中初始化好 viewport。 详见下方代码: <meta name="viewport" content="width=网页真实宽度, initial-scale=倍数"/> 假设网页宽度为 960px 或 1080px,可在width中加入该,并将 initial-scale 设置一个适合的倍数。 例...
https://bbs.tsingfun.com/thread-889-1-1.html 

MFC中使用CSplitterWnd分割窗口后视图大小的问题 - C++ UI - 清泛IT社区,为创新赋能!

...rH.CreateView(0, 0, RUNTIME_CLASS(CGraphFrame), sizeDummy, pContext))复制代码 这时,你可以: 1、设置一下m_wndSplitterH的SetRowInfo属性函数,如:m_wndSplitterH.SetRowInfo(0,100,0); &nbsp; &nbsp;&nbsp; &nbsp;(第一个参数:窗口索引,0代表第一个窗体;后面...