数字图像处理(冈萨雷斯)中英文答案+Matlab和C++代码全网最完整版 集合了网上所有版本的资源 冈萨雷斯第三版答案,第四版答案 有Matlab源码,C++源码,python案例 直接下载带走
2024-02-27 09:24:16 98.99MB matlab 数字图像处理
1
Effective Modern C++: 42 Specific Ways to Improve Your Use of C++11 and C++14 by Scott Meyers English | 2014 | ISBN: 1491903996 | ISBN-13: 9781491903995 | 320 pages | PDF, EPUB | 22,6 MB At first glance, C++11 and C++14 are defined by the new features they introduce, e.g., auto type declarations, move semantics, lambda expressions, and concurrency support. Information on these features is easy to come by, but learning to apply them effectively (such that the resulting software is correct, efficient, maintainable, and portable) is more challenging.
2024-02-26 22:33:15 4.49MB
1
effective modern c++ 中文
2024-02-26 22:28:44 3.53MB effective modern
1
基于Visual C++与ANSYS的渐开线齿轮参数化建模,杨旭,仲平,利用Visual C++6.0及ANSYS的二次开发工具APDL语言,开发了界面友好的高效率渐开线齿轮参数化建模系统。借助VC++前台开发友好、方便易用的�
2024-02-26 14:25:04 469KB 首发论文
1
【资源说明】 基于C++实现多线程连接池MySQL源码+项目说明+详细代码注释.zip C++ 调用 MYSQL API 连接池 ## environment: * VS2022 * MySQL8.0.27 ## 高并发下频繁处理瓶颈 * 建立通信:`TCP三次握手` * 数据库服务器的`连接认证` * 服务器`关闭连接`的资源回收 * `断开`通信的TCP四次挥手 > 如果客户端和服务端`频繁`进行类似操纵,影响整个`开发效率` ## 数据库连接池 > 为了`提高`数据库(关系型数据库)的访问`瓶颈`,除在服务器端添加缓存服务器缓存常用的数据,还可添加连接池来提高服务器访问效率 连接池主要用于`网络服务器端`,用于同时接受`多个用户端`请求,数据库与数据库客户端采用`TCP通信`. * 数据库客户端和服务端先建立起`多个连接` * 多线程通过`套接字通信`取出连接池中的一个连接,然后和服务器直接进行通信,通信之后再将此连接`还给连接池`(减少数据库连接和断开的次数) * 数据库连接池对应C++中的一个数据库连接对象,即`单例模式` * 连接池中包括数据库服务器连接对应的IP,端口,用户,密码等信息 * 对数据库对象存入`STL`当中,需要设置最大值,最小值限制队列 * 多线程从连接池中取出数据库对象若有取出,`没有等待`调用算法 * 对 连接池中的数据库连接(空间时间长的即调度算法)进行`适当`断开连接 * 共享资源的访问,需要`互斥锁`(生产者消费者问题) ## 单例模式 * `懒汉模式` > 当使用这个类的时候才创建它 > 创建对象时,加锁保证有且仅有一个 > (有线程安全问题) * `饿汉模式` > 不管用不用它,只要类被创建,这个实例就有 > 没有线程安全问题 【备注】 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载使用,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
2024-02-26 13:31:32 1.56MB 毕业设计 课程大作业 源码 MySQL
Visual C++ Redistributable for Visual Studio 2015和Microsoft Visual C++ Redistributable for Visual Studio 2019都是在微软官方网站下载的,完全可用
2024-02-26 11:22:56 49.44MB vcruntime
1
C++水电煤气管理.zip
2024-02-26 10:07:56 16.45MB C++课设
1
4.1 运算符的优先级 C++/C 语言的运算符有数十个,运算符的优先级与结合律如表 4-1 所示。注意一元 运算符 + - * 的优先级高于对应的二元运算符。 优先级 运算符 结合律 ( ) [ ] -> . 从左至右 ! ~ ++ -- (类型) sizeof + - * & 从右至左 * / % 从左至右 + - 从左至右 << >> 从左至右 < <= > >= 从左至右 == != 从左至右 & 从左至右 ^ 从左至右 | 从左至右 && 从左至右 || 从右至左 ?: 从右至左 从 高 到 低 排 列 = += -= *= /= %= &= ^= |= <<= >>= 从左至右 表 4-1 运算符的优先级与结合律 【规则 4-1-1】如果代码行中的运算符比较多,用括号确定表达式的操作顺序,避免 使用默认的优先级。 由于将表 4-1 熟记是比较困难的,为了防止产生歧义并提高可读性,应当用括号确 定表达式的操作顺序。例如: word = (high << 8) | low
2024-02-26 00:57:32 655KB C++编程指南
1
谷歌C++编程指南.pdf
2024-02-26 00:50:38 219KB 谷歌C++编程指南
1
C++ 14 Quick Syntax Reference: Second Edition by Mikael Olsson English | 2016 | ISBN: 1484217268 | 131 pages | PDF | 0,6 MB This updated handy quick C++ 14 guide is a condensed code and syntax reference based on the newly updated C++ 14 release of the popular programming language. It presents the essential C++ syntax in a well-organized format that can be used as a handy reference. You won’t find any technical jargon, bloated samples, drawn out history lessons, or witty stories in this book. What you will find is a language reference that is concise, to the point and highly accessible. The book is packed with useful information and is a must-have for any C++ programmer. In the C++ 14 Quick Syntax Reference, Second Edition, you will find a concise reference to the C++ 14 language syntax. It has short, simple, and focused code examples. This book includes a well laid out table of contents and a comprehensive index allowing for easy review. What You'll Learn: How to Compile and Run What are C++ Variables, Operators, Pointers and References What are Arrays, Strings, Conditionals, Loops and more How to use Functions How to work with Constructors and Inheritance How to use Access Levels, Static, Enum, String and Union, and more What are Custom Conversions, Namespaces, Constants, and Preprocessor How to do Event Handling What are Type Conversions, Templates, Headers, and more Audience This book is a quick, handy pocket syntax reference for experienced C++ programmers, and a concise, easily-digested introduction for other programmers new to C++.
2024-02-26 00:46:17 568KB C++14
1