These libraries are designed for use with Microsoft Visual C++ version 6.0. Install them by running setup.exe. This will copy the files to various places where MSVC will expect to FIND them. If setup fails, alternate instructions are below.
標簽: Microsoft libraries designed Install
上傳時間: 2015-06-23
上傳用戶:s363994250
Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP connection pool. One could easily implement a IMAP connection pool, then take the existing code and implement a LDAP connection pool. The program grows, and now there is a need for a pool of threads. So just take the IMAP connection pool and convert that to a pool of threads (Copy, paste, FIND, replace????). Need to make some changes to the pool implementation? Not a very easy task, since the code has been duplicated in many places. Re-inventing source code is not an intelligent approach in an object oriented environment which encourages re-usability. It seems to make more sense to implement a pool that can contain any arbitrary type rather than duplicating code. How does one do that? The answer is to use type parameterization, more commonly referred to as templates.
標簽: connection pool applications program
上傳時間: 2013-12-25
上傳用戶:playboys0
用java實現的快速排序,同樣從jdk中FIND到
上傳時間: 2014-11-16
上傳用戶:lunshaomo
use double link list to implenment memory allocation. There won t appear maloc, new, delete, in my code. All is using freelist to FIND a suitable memory space.
標簽: allocation implenment double appear
上傳時間: 2013-12-31
上傳用戶:jhksyghr
The Java Cookbook is a comprehensive collection of problems, solutions, and practical examples for anyone programming in Java. Developers will FIND hundreds of tried-andtrue Java "recipes" covering all of the major APIs as well as some APIs that aren t as well documented in other Java books.
標簽: comprehensive collection practical solutions
上傳時間: 2014-01-16
上傳用戶:ukuk
THIS is really two books in one: a tutorial and a reference manual for JDBC, the application programming interface that makes it possible for programmers to access databases from Java. The goal is to be useful to a wide range of readers, from database novices to database experts. Therefore, we have arranged the book so that information needed only by experts is separated out from the basic material. We hope that driver developers as well as application programmers and MIS administrators will FIND what they need. Because different sections are aimed at different audiences, we expect that few people will read every page. We have sometimes duplicated explanations in an effort to make reading easier for those who do not read all sections. This book will be most helpful to those who have some knowledge of the Java programming language and SQL (Structured Query Language), but one doesn t need to be an expert in either to understand the basic concepts presented here.
標簽: application reference tutorial program
上傳時間: 2015-08-04
上傳用戶:zhengzg
ACM試題An Easy Problem Description As we known, data stored in the computers is in binary form. The problem we discuss now is about the positive integers and its binary form. Given a positive integer I, you task is to FIND out an integer J, which is the minimum integer greater than I, and the number of 1 s in whose binary form is the same as that in the binary form of I. For example, if "78" is given, we can write out its binary form, "1001110". This binary form has 4 1 s. The minimum integer, which is greater than "1001110" and also contains 4 1 s, is "1010011", i.e. "83", so you should output "83".
標簽: Description computers Problem binary
上傳時間: 2013-12-11
上傳用戶:libenshu01
This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) to FIND out the nth element in theFibanocci sequence number which is 1,1,2,3,5,8,13,21,34,55,…3. write the prefix and postfix form of the following infix expressiona + b – c / d + e * f – g * h / i ^ j4. write a function to count the number of nodes in a binary tr
標簽: introduction the contains intended
上傳時間: 2013-12-23
上傳用戶:liansi
The project Adventure is a simple text-based adventure game. The game, as given, involves the hero trying to FIND his way from a deep dark forest to home and his true love. There s very little else the player can do apart from moving from place to place. It s not really very interesting. This project can be of use beyond the given, rather boring forest adventure though. You can use it as a basis for developing your own adventure game with different, more interesting commands, areas, items, people and so on. The package ope.adventure contains classes to describe the game world.
標簽: game text-based The Adventure
上傳時間: 2014-01-15
上傳用戶:cursor
程序功能: 1 管理員開設課程; 2 學生可以選擇課程; 3 學生注冊; 4 教師注冊; 5 教師給選自己課程的學生給成績; 6 管理員對學生成績進行管理; 7 學生能夠查詢通過密碼自己的成績; cpp9.cpp 主函數控制程序運行 teacher.cpp 教師類 course.cpp 課程類 Administrator.cpp 管理員類 delete_record.cpp 刪除記錄 save_lord.cpp 文件存取操作 short_record.cpp 生成簡明文件 bad.cpp 生成均不及格的學生文件 FIND.cpp 查找學生信息 input_disp.cpp 輸入、顯示信息 Graph1.cpp 圖形顯示 學生成績管理系統簡介.doc 程序說明
上傳時間: 2014-11-07
上傳用戶:shanml