亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

exceptions

  • 很全的中斷手冊。 INT 00 - CPU-generated - DIVIDE ERROR INT 01 - CPU-generated - SINGLE STEP (80386+) - DEB

    很全的中斷手冊。 INT 00 - CPU-generated - DIVIDE ERROR INT 01 - CPU-generated - SINGLE STEP (80386+) - DEBUGGING exceptions INT 02 - external hardware - NON-MASKABLE INTERRUPT INT 03 - CPU-generated - BREAKPOINT INT 04 - CPU-generated - INTO DETECTED OVERFLOW INT 05 - PRINT SCREEN CPU-generated (80186+) - BOUND RANGE EXCEEDED INT 06 - CPU-generated (80286+) - INVALID OPCODE INT 07 - CPU-generated (80286+) - PROCESSOR EXTENSION NOT AVAILABLE INT 08 - IRQ0 - SYSTEM TIMER CPU-generated (80286+) . . .

    標簽: CPU-generated INT DIVIDE SINGLE

    上傳時間: 2013-12-27

    上傳用戶:aa54

  • Thinking in C++ patiently and methodically explores the issues of when and how to use inlines, refer

    Thinking in C++ patiently and methodically explores the issues of when and how to use inlines, references, operator overloading, inheritance and dynamic objects, as well as advanced topics such as the proper use of templates, exceptions and multiple inheritance. The entire effort is woven in a fabric that includes Eckel’s own philosophy of object and program design. A must for every C++ developer’s bookshelf, Thinking in C++ is the one C++ book you must have if you’re doing serious development with C++.

    標簽: methodically and patiently Thinking

    上傳時間: 2014-01-03

    上傳用戶:it男一枚

  • ExcpHook is an open source (see license.txt) Exception Monitor for Windows made by Gynvael Coldwind

    ExcpHook is an open source (see license.txt) Exception Monitor for Windows made by Gynvael Coldwind (of Team Vexillium). t uses a ring0 driver to hook KiExceptionDispatch procedure to detect the exceptions, and then shows information about the exception on stdout (using the ring3 part of the program ofc). The difference between this method, and the standard debug API method it that this method monitores all of XP processes, and the program does not have to attach to any other process to monitor it, hence it s harder to detect. The code currently is considered as ALPHA, and it has been reported to BSoD sometimes (on multi core/cpu machines). Take Care!

    標簽: Exception ExcpHook Coldwind Monitor

    上傳時間: 2014-02-10

    上傳用戶:jing911003

  • 多項式曲線擬合 任意介數 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as

    多項式曲線擬合 任意介數 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as a template class, using vector<FloatType> parameters. Added a method to handle some EMathError exceptions. If do NOT want to use this just call PolyFit2 directly. usage: Call PolyFit by something like this. CPolyFit<double> PolyFitObj double correlation_coefficiant = PolyFitObj.PolyFit(X, Y, A) where X and Y are vectors of doubles which must have the same size and A is a vector of doubles which must be the same size as the number of coefficients required. returns: The correlation coefficient or -1 on failure. produces: A vector (A) which holds the coefficients.

    標簽: Least-squares arbitrary Purpose Builder

    上傳時間: 2013-12-18

    上傳用戶:宋桃子

  • 學會一個程序語言

    學會一個程序語言,是一回事兒;學會如何以此語言設計并實作出有效的程序,又是一 回事兒。C++ 尤其如此,因為它很不尋常地涵蓋了罕見的威力和豐富的表現力,不但建立 在一個全功能的傳統語言(C)之上,更提供極為廣泛的對象導向(object-oriented)性質, 以及對templates 和exceptions(異常狀態)的支持。 Lostmouse編寫的非常出名的C++學習資料,適用于有一定的C++編程經驗的同學。

    標簽: 程序 語言

    上傳時間: 2014-11-27

    上傳用戶:qunquan

  • Thinking in Java, 3rd ed. Revision 4.0 Preface Introduction 1: Introduction to Objects 2

    Thinking in Java, 3rd ed. Revision 4.0 Preface Introduction 1: Introduction to Objects 2: Everything is an Object 3: Controlling Program Flow 4: Initialization & Cleanup 5: Hiding the Implementation 6: Reusing Classes 7: Polymorphism 8: Interfaces & Inner Classes 9: Error Handling with exceptions 10: Detecting Types 11: Collections of Objects 12: The Java I/O System 13: Concurrency 14: Creating Windows & Applets 15: Discovering Problems 16: Analysis and Design A: Passing & Returning Objects B: Java Programming Guidelines C: Supplements D: Resources Index

    標簽: Introduction Thinking Revision Preface

    上傳時間: 2014-07-13

    上傳用戶:netwolf

  • 1. 異常和標準C 對它的支持 (前言略) 1.1 異常分類 基于Dr. GUI 的建議

    1. 異常和標準C 對它的支持 (前言略) 1.1 異常分類 基于Dr. GUI 的建議,我把我的第一個專欄投入到“程序異常”的系列上。我認識到, “exception”這個術語有些不明確并和上下文相關,尤其是C++標準異常(C++ standard exceptions)和Microsoft 的結構化異常(structured exception handling)。不幸的的是, “異常”一詞太常見了,隨時出現在語言的標準和常見的編程文獻中。因為不想創造一個新 名詞,所以我將盡力在此系列的各部分中明確我對“異常”的用法。 􀁺 Part 1 概述通常意義上的異常的性質,和標準C 庫提供的處理它們的方法。 􀁺 Part 2 縱覽Microsoft 對這些標準C 庫方法的擴展:專門的宏和結構化異常處理。 􀁺 Part 3 及其余將致力于標準C++異常處理體系。 (C 語言使用者可能在Part2 后放棄,但我鼓勵你堅持到底;我所提出的許多點子同樣 適用于C,雖然不是很直接。)

    標簽: 1.1 GUI Dr 標準

    上傳時間: 2014-01-13

    上傳用戶:aappkkee

  • 1.1 異常分類 基于Dr. GUI 的建議

    1.1 異常分類 基于Dr. GUI 的建議,我把我的第一個專欄投入到“程序異常”的系列上。我認識到, “exception”這個術語有些不明確并和上下文相關,尤其是C++標準異常(C++ standard exceptions)和Microsoft 的結構化異常(structured exception handling)

    標簽: 1.1 GUI Dr 分類

    上傳時間: 2013-12-23

    上傳用戶:yepeng139

  • Learn how to: * Tokenize a null-terminated string * Create a search and re

    Learn how to: * Tokenize a null-terminated string * Create a search and replace function for strings * Implement subtraction for string objects * Use the vector, deque, and list sequence containers * Use the container adaptors stack, queue, and priority_queue * Use the map, multimap, set, and multiset associative containers * Reverse, rotate, and shuffle a sequence * Create a function object * Use binders, negators, and iterator adapters * Read and write files * Use stream iterators to handle file I/O * Use exceptions to handle I/O errors * Create custom inserters and extractors * Format date, time, and numeric data * Use facets and the localization library * Overload the [ ], ( ), and -> operators * Create an explicit constructor * And much, much more

    標簽: null-terminated Tokenize Create string

    上傳時間: 2014-01-18

    上傳用戶:yph853211

  • 學會一個程式語言

    學會一個程式語言,是一回事兒;學會如何以此語言設計並實作出有效的程式,又是一回事兒。C++ 尤其如此,因為它很不尋常地涵蓋了罕見的威力和豐富的表現力,不但建立在一個全功能的傳統語言(C)之上,更提供極為廣泛的物件導向(object-oriented)性質,以及對templates 和exceptions(異常狀態)的支援。

    標簽: 程式

    上傳時間: 2013-12-09

    上傳用戶:ANRAN

主站蜘蛛池模板: 桃江县| 都兰县| 葵青区| 诸暨市| 封开县| 盐城市| 荣成市| 河东区| 阿克| 文成县| 隆子县| 武宁县| 莱阳市| 桂阳县| 泽库县| 广平县| 若尔盖县| 息烽县| 和硕县| 金川县| 邯郸县| 襄城县| 丰顺县| 子洲县| 航空| 鄱阳县| 玛多县| 丁青县| 太仓市| 永德县| 沙雅县| 汽车| 咸丰县| 天峻县| 永和县| 扎兰屯市| 勐海县| 任丘市| 关岭| 湖州市| 两当县|