上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页

2022年4月12日

C++ 语法总结

摘要: 静态类成员: 1.静态数据成员只有一份,某个对象改变了静态变量,则其他对象的静态变量页随之改变 2.静态数据成员可以是当前类的类型 class Book { static CBook m_VCbook; CBook *m_pBook; } 3.静态数据成员可以作为函数的默认参数 4.类的静态成员函数 阅读全文

posted @ 2022-04-12 17:49 wu.g.q 阅读(169) 评论(0) 推荐(0)

2022年4月9日

c++ 重载函数调用运算符

摘要: 重载函数调用运算符: 如果类重载了函数调用运算符,则可以像使用函数一样操作类对象。因为这样的类同时也可以存储状态,所以比普通函数更加灵活 示例如下: #include "stdafx.h" #include "iostream" using namespace std; struct NullTyp 阅读全文

posted @ 2022-04-09 15:34 wu.g.q 阅读(98) 评论(0) 推荐(0)

2022年3月22日

VS2010 编译器总结

摘要: General Property Page (Project) Article 02/24/2013 3 minutes to read When you right-click on a project node in in Solution Explorer, and select Proper 阅读全文

posted @ 2022-03-22 16:26 wu.g.q 阅读(423) 评论(0) 推荐(0)

2022年3月11日

C:\Windows\system32 目录下的exe程序整理

摘要: 以下的exe均为C:\Windows\system32目录下: xwizard.exe: 暂时未知 xcopy.exe:cmd中用xcopy命令可以复制整个目录到另外一个目录 XblGameSaveTask.exe:暂时未知 WWAHost.exe: wusa.exe: WUDFHost.exe: 阅读全文

posted @ 2022-03-11 16:22 wu.g.q 阅读(2476) 评论(0) 推荐(0)

2022年3月9日

CMD 支持的命令

摘要: A Arp Assoc At Atmadm Attrib B Batch files Bootcfg Break C Cacls Call Change Chcp Chdir Chkdsk Chkntfs Cipher Cls Cmd Cmstp Color Command shell overvi 阅读全文

posted @ 2022-03-09 15:29 wu.g.q 阅读(41) 评论(0) 推荐(0)

win10 系统时间显示秒

摘要: 1.打开notepad 2.将以下内容复制到该文件 Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"ShowSeco 阅读全文

posted @ 2022-03-09 10:04 wu.g.q 阅读(166) 评论(0) 推荐(0)

2022年2月17日

VC中调用WebBrowser简单的实现过程(图解过程)

摘要: 原文链接: https://blog.csdn.net/supermanking/article/details/5866213 阅读全文

posted @ 2022-02-17 10:18 wu.g.q 阅读(59) 评论(0) 推荐(0)

2022年2月16日

排序之珠排序

摘要: 先看一段动态图: 未排序前: 2 6 5 4 8 3 排序后: 2 3 4 5 6 8 步骤: 1. 每个数都分为几个1,然后在一个两维数组(待排序数组长度,数组中数的最大值)中制作珠子 2.珠子掉落 3.从上到下依次遍历,确定升序序列 代码如下: #include <stdio.h> #inclu 阅读全文

posted @ 2022-02-16 15:13 wu.g.q 阅读(89) 评论(0) 推荐(0)

2022年1月25日

WPF 添加或删除Visual对象 画文字和画线

摘要: 直接上码: 1.新建WpfApp解决方案 2.MainWindow.xaml文件代码如下: <Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" x 阅读全文

posted @ 2022-01-25 15:03 wu.g.q 阅读(468) 评论(0) 推荐(0)

WPF WriteableBitmap类直接操作像素点

摘要: 还是话不多说,直接上码: 1.新建WpfApp应用程序 2.MainWindow.xaml文件代码如下: <Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presenta 阅读全文

posted @ 2022-01-25 14:16 wu.g.q 阅读(391) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页

导航