上一页 1 2 3 4 5 6 7 8 ··· 17 下一页
转载:https://blog.csdn.net/cwj066/article/details/82423627 https://stackoverflow.com/questions/20508086/getting-rid-of-atltracegeneral-category-shown-in Read More
posted @ 2021-02-06 15:28 _KikyoBK Views(2712) Comments(0) Diggs(0) Edit
转载:https://www.cnblogs.com/foohack/p/4119207.html 都是DLL内的关键字,即导出与导入。他们是将DLL内部的类与函数以及数据导出与导入时使用的。主要区别在于,dllexport是在这些类、函数以 及数据的申明的时候使用。用过表明这些东西可以被外部函数使 Read More
posted @ 2021-02-06 15:03 _KikyoBK Views(168) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/sundan308/article/details/17071153 Configuration->General->Output Directory->单击编辑框点下拉箭头-> <Edit...> 图1 图2 Read More
posted @ 2021-02-03 11:36 _KikyoBK Views(300) Comments(0) Diggs(0) Edit
https://colorpix.en.softonic.com/ Read More
posted @ 2021-01-26 16:52 _KikyoBK Views(90) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/xhlzjd/article/details/85230493 1 bool GetCircleImage(CString strSource, CString strTarget) 2 { 3 Image image(strSource); 4 B Read More
posted @ 2021-01-25 21:53 _KikyoBK Views(355) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/bzhxuexi/article/details/23950701 先写一个简单的程序: 1 #include<iostream> 2 #include<Windows.h> 3 4 using namespace std; 5 6 int main Read More
posted @ 2021-01-09 14:04 _KikyoBK Views(573) Comments(0) Diggs(0) Edit
EM_SETSEL消息 这个消息可以用来选中一段内容。如果起始位置和结束位置相同,就实现了把光标放在想要的位置的功能 Read More
posted @ 2020-12-25 16:14 _KikyoBK Views(159) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/qq_29542611/article/details/79521841 原型模式介绍 这节我们继续学习设计模式——原型模式。我们先看看原型模式的标准说法,用原型实例指定创建对象的种类并且通过拷贝这些原型创建新的对象。其实原型模式就是从一个对象再创建 Read More
posted @ 2020-11-30 20:32 _KikyoBK Views(124) Comments(0) Diggs(0) Edit
减少算法类与使用算法类之间的耦合;简化了单元测试,因为每个算法都有自己的类,可以单独测试 Operation.h: #pragma once #include<iostream> #include<string> using namespace std; class Operation { publ Read More
posted @ 2020-11-27 10:34 _KikyoBK Views(111) Comments(0) Diggs(0) Edit
根据传入的参数的不同,自动生成需要的类的对象 简单工厂模式只是解决对象的创建问题 Operation.h: 1 #pragma once 2 3 #include<iostream> 4 #include<string> 5 6 using namespace std; 7 8 class Oper Read More
posted @ 2020-11-26 21:03 _KikyoBK Views(86) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 ··· 17 下一页