-
COM +编程:使用Visual C++ ATL和实际指南
应用背景+程序设计利用Visual C++和ATL的实用指南该tapadiyapublisher:Prentice Hall PTR第一版2000年9月15日国际标准书号:0-13-088674-2,560页关键技术最大化/组件复用和可扩展性:实用,企业级解决方案!如果你准备开发公司的应用程序,从这开始实用,解决方案为重点的指南!使用案例研究和真实世界的代码休利特帕卡德的例子,COM / COM +专家Pradeep tapadiya了COM和COM +从开发者的角度看。你将掌握强大的技术提高可重用性,可扩展性和鲁棒性,并发现如何避免陷阱和陷阱,等待粗心的。tapadiya演示了当今最好的设计接口,构建服务器,处理的方法交易,包括:在界面设计与IDL深度覆盖一个完整的章节,最大限度地提高了可扩展性+应用程序在分布式,基于组件的环境中最大限度地提高安全性+同步,公寓,活动和事件通知与排队组件一起工作管理分布式组件环境无论你是新的组件开发,迁移到通讯+和窗口2000,或有经验的开发人员寻求强大的新技术,你会发现在COM编程的答案:用Visual C++ ATL和实用指南。并;
- 2023-02-18 17:05:04下载
- 积分:1
-
Communication System Simulation, and AM, PSK modulation, etc., as well as other...
通信系统仿真,有AM,PSK等调制,还有其他文件(system环境下),是仿真文件-Communication System Simulation, and AM, PSK modulation, etc., as well as other documents (system environment)
- 2023-07-17 13:35:03下载
- 积分:1
-
compiler "24 points. DSW "documents, the Debug directory will generate...
编译“新二十四点.dsw”文件,在Debug目录下会生成“新二十四点.exe”文件,直接双击该文件,即可运行二十四点程序。-compiler "24 points. DSW "documents, the Debug directory will generate" new 24 points. Exe "document, double-click the file directly, and can run the 24-point procedures.
- 2023-02-11 05:00:03下载
- 积分:1
-
stiffened ideal for the design of large thickness overcome the problems that may...
加强肋
理想的设计
为了克服壁厚大可能引起的问题,使用是一种可减少壁厚并能增加刚性的有效方法。
一般来说,部件的刚性可用以下方法增强
增加壁厚;
增大弹性模量(如加大增强纤维的含量);
设计中考虑。
如果设计用的材料不能满足所需刚性,则应选择具有更大弹性模量的材料。简单的方法是增加塑料中增强纤维的含量。但是,在特定壁厚下,这种方法仅能使刚性呈线性增长。更有效的方法是使用经过优化设计的。由于惯性力矩增大,部件的刚性便会增大。在优化的尺寸时,不但要考虑工程设计应当考虑的问题,还应考虑与生产和外观有关的技术问题。
优化的尺寸
大的惯性力矩可很容易地通过设置又厚又高的来实现。但是对热塑性工程塑料,这种方法常会产生制品表面凹痕、内部空洞和翘曲等问题。而且,如果的高度过高,在负荷下结构将有可能膨胀。出于这种考虑,必须在合理比例内保持的尺寸(见图1)。-stiffened ideal for the design of large thickness overcome the problems that may arise. use of a reduced wall thickness and rigidity can increase the effective method. In general, the rigid parts of the following methods can be used to enhance increased thickness; increased elastic modulus (such as increasing fiber content); Design considerations. If the design of the materials used can not meet the rigid requirements, they should have a greater choice of elastic modulus of the material. The simple way out is to increase plastics reinforced fiber content. However, in s
- 2022-01-28 16:48:59下载
- 积分:1
-
内核超时等待机制的原理:
应用程序通过操作系统提供的系统调用接口获取资源时,在系统调用的入口参数里可以指定超时等待的最大时间,通常以毫秒为单位,内核会将其转...
内核超时等待机制的原理:
应用程序通过操作系统提供的系统调用接口获取资源时,在系统调用的入口参数里可以指定超时等待的最大时间,通常以毫秒为单位,内核会将其转化为系统的时钟(tick)
-Timeout waiting for core principles of mechanism: the application through the operating system
- 2022-03-16 13:01:09下载
- 积分:1
-
This is for my own use C BUILDER do a regular shutdown procedures
这是我自己用C++BUILDER做的一个定时关机的程序-This is for my own use C BUILDER do a regular shutdown procedures
- 2022-06-12 23:12:52下载
- 积分:1
-
C语言编写的,效果不错,希望大家多多指正哈!
C语言编写的,效果不错,希望大家多多指正哈!-C language prepared by the good results, I hope Members can correct Ha!
- 2023-01-23 12:30:04下载
- 积分:1
-
卡西欧DT
casio DT-930范例
MOT
.RAR-casio DT-930 sample MOT.RAR
- 2022-03-24 20:35:47下载
- 积分:1
-
二维经验模式分解,速度较快,不错的代码,希望对学习HHT的朋友有用...
二维经验模式分解,速度较快,不错的代码,希望对学习HHT的朋友有用-Two-dimensional empirical mode decomposition, fast, good code
- 2022-07-13 08:09:23下载
- 积分:1
-
Find prime numbers prepared by screening the function: void sieve (bool isPrime...
编写筛选查找素数函数:
void sieve(bool isPrime[], int n)
其中isPrime[ ]为一个布尔型数组,n为数组大小。由于2是第一个素数,
所以设置isPrime[0]和isPrime[1]的值为false,并设置其余的元素初值为true。
然后对从4到n-1的每一个i,判断i是否能够被2整除,如果i能够被2整除,则设置isPrime[i]为false。
对从2到n/2的每一个可能的数值重复以上处理,当操作结束时,所有值为true的isPrime[i]所对应的i就是素数,它们将是从筛子中掉下来的。-Find prime numbers prepared by screening the function: void sieve (bool isPrime [], int n) which isPrime [] as a Boolean array, n is the size of the array. Because 2 is the first prime number, so set the isPrime [0], and isPrime [1] a value of false, and set the initial value of the remaining elements of true. And then from 4 to n-1 for each i, to determine whether i can be divisible by 2, if i can be divisible by 2, then set the isPrime [i] is false. From 2 to n/2 possible values for each one to repeat the above processing, when the operation ended, all the true value of the isPrime [i] corresponding to i is a prime number, they will be falling from the sieve in the past.
- 2023-03-02 04:45:03下载
- 积分:1