⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debugcxt.tex

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 TEX
字号:
\section{\class{wxDebugContext}}\label{wxdebugcontext}A class for performing various debugging and memory tracingoperations. Full functionality (such as printing out objectscurrently allocated) is only present in a debugging build of wxWidgets,i.e. if the \_\_WXDEBUG\_\_ symbol is defined. wxDebugContextand related functions and macros can be compiled out by settingwxUSE\_DEBUG\_CONTEXT to 0 is setup.h\wxheading{Derived from}No parent class.\wxheading{Include files}<wx/memory.h>\wxheading{See also}\overview{Overview}{wxdebugcontextoverview}\latexignore{\rtfignore{\wxheading{Members}}}\membersection{wxDebugContext::Check}\label{wxdebugcontextcheck}\func{int}{Check}{\void}Checks the memory blocks for errors, starting from the currently setcheckpoint.\wxheading{Return value}Returns the number of errors,so a value of zero represents success. Returns -1 if an errorwas detected that prevents further checking.\membersection{wxDebugContext::Dump}\label{wxdebugcontextdump}\func{bool}{Dump}{\void}Performs a memory dump from the currently set checkpoint, writing to thecurrent debug stream. Calls the {\bf Dump} member function for each wxObjectderived instance.\wxheading{Return value}true if the function succeeded, false otherwise.\membersection{wxDebugContext::GetCheckPrevious}\label{wxdebugcontextgetcheckprevious}\func{bool}{GetCheckPrevious}{\void}Returns true if the memory allocator checks all previous memory blocks for errors.By default, this is false since it slows down execution considerably.\wxheading{See also}\helpref{wxDebugContext::SetCheckPrevious}{wxdebugcontextsetcheckprevious}\membersection{wxDebugContext::GetDebugMode}\label{wxdebugcontextgetdebugmode}\func{bool}{GetDebugMode}{\void}Returns true if debug mode is on. If debug mode is on, the wxObject new and deleteoperators store or use information about memory allocation. Otherwise,a straight malloc and free will be performed by these operators.\wxheading{See also}\helpref{wxDebugContext::SetDebugMode}{wxdebugcontextsetdebugmode}\membersection{wxDebugContext::GetLevel}\label{wxdebugcontextgetlevel}\func{int}{GetLevel}{\void}Gets the debug level (default 1). The debug level is used by the wxTraceLevel function andthe WXTRACELEVEL macro to specify how detailed the trace information is; settinga different level will only have an effect if trace statements in the applicationspecify a value other than one.This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\wxheading{See also}\helpref{wxDebugContext::SetLevel}{wxdebugcontextsetlevel}\membersection{wxDebugContext::GetStream}\label{wxdebugcontextgetstream}\func{ostream\&}{GetStream}{\void}Returns the output stream associated with the debug context.This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\wxheading{See also}\helpref{wxDebugContext::SetStream}{wxdebugcontextsetstream}\membersection{wxDebugContext::GetStreamBuf}\label{wxdebugcontextgetstreambuf}\func{streambuf*}{GetStreamBuf}{\void}Returns a pointer to the output stream buffer associated with the debug context.There may not necessarily be a stream buffer if the stream has been setby the user.This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\membersection{wxDebugContext::HasStream}\label{wxdebugcontexthasstream}\func{bool}{HasStream}{\void}Returns true if there is a stream currently associatedwith the debug context.This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\wxheading{See also}\helpref{wxDebugContext::SetStream}{wxdebugcontextsetstream}, \helpref{wxDebugContext::GetStream}{wxdebugcontextgetstream}\membersection{wxDebugContext::PrintClasses}\label{wxdebugcontextprintclasses}\func{bool}{PrintClasses}{\void}Prints a list of the classes declared in this application, giving derivationand whether instances of this class can be dynamically created.\wxheading{See also}\helpref{wxDebugContext::PrintStatistics}{wxdebugcontextprintstatistics}\membersection{wxDebugContext::PrintStatistics}\label{wxdebugcontextprintstatistics}\func{bool}{PrintStatistics}{\param{bool}{ detailed = true}}Performs a statistics analysis from the currently set checkpoint, writingto the current debug stream. The number of object and non-objectallocations is printed, together with the total size.\wxheading{Parameters}\docparam{detailed}{If true, the function will also print how manyobjects of each class have been allocated, and the space taken bythese class instances.}\wxheading{See also}\helpref{wxDebugContext::PrintStatistics}{wxdebugcontextprintstatistics}\membersection{wxDebugContext::SetCheckpoint}\label{wxdebugcontextsetcheckpoint}\func{void}{SetCheckpoint}{\param{bool}{ all = false}}Sets the current checkpoint: Dump and PrintStatistics operations willbe performed from this point on. This allows you to ignore allocationsthat have been performed up to this point.\wxheading{Parameters}\docparam{all}{If true, the checkpoint is reset to include allmemory allocations since the program started.}\membersection{wxDebugContext::SetCheckPrevious}\label{wxdebugcontextsetcheckprevious}\func{void}{SetCheckPrevious}{\param{bool}{ check}}Tells the memory allocator to check all previous memory blocks for errors.By default, this is false since it slows down execution considerably.\wxheading{See also}\helpref{wxDebugContext::GetCheckPrevious}{wxdebugcontextgetcheckprevious}\membersection{wxDebugContext::SetDebugMode}\label{wxdebugcontextsetdebugmode}\func{void}{SetDebugMode}{\param{bool}{ debug}}Sets the debug mode on or off. If debug mode is on, the wxObject new and deleteoperators store or use information about memory allocation. Otherwise,a straight malloc and free will be performed by these operators.By default, debug mode is on if \_\_WXDEBUG\_\_ is defined. If the applicationuses this function, it should make sure that all object memory allocatedis deallocated with the same value of debug mode. Otherwise, thedelete operator might try to look for memory information that does notexist.\wxheading{See also}\helpref{wxDebugContext::GetDebugMode}{wxdebugcontextgetdebugmode}\membersection{wxDebugContext::SetFile}\label{wxdebugcontextsetfile}\func{bool}{SetFile}{\param{const wxString\& }{filename}}Sets the current debug file and creates a stream. This will delete any existingstream and stream buffer. By default, the debug context streamoutputs to the debugger (Windows) or standard error (other platforms).\membersection{wxDebugContext::SetLevel}\label{wxdebugcontextsetlevel}\func{void}{SetLevel}{\param{int}{ level}}Sets the debug level (default 1). The debug level is used by the wxTraceLevel function andthe WXTRACELEVEL macro to specify how detailed the trace information is; settinga different level will only have an effect if trace statements in the applicationspecify a value other than one.This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\wxheading{See also}\helpref{wxDebugContext::GetLevel}{wxdebugcontextgetlevel}\membersection{wxDebugContext::SetStandardError}\label{wxdebugcontextsetstandarderror}\func{bool}{SetStandardError}{\void}Sets the debugging stream to be the debugger (Windows) or standard error (other platforms).This is the default setting. The existing stream will be flushed and deleted.This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\membersection{wxDebugContext::SetStream}\label{wxdebugcontextsetstream}\func{void}{SetStream}{\param{ostream* }{stream}, \param{streambuf* }{streamBuf = NULL}}Sets the stream and optionally, stream buffer associated with the debug context.This operation flushes and deletes the existing stream (and stream buffer if any).This is obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\wxheading{Parameters}\docparam{stream}{Stream to associate with the debug context. Do not set this to NULL.}\docparam{streamBuf}{Stream buffer to associate with the debug context.}\wxheading{See also}\helpref{wxDebugContext::GetStream}{wxdebugcontextgetstream}, \helpref{wxDebugContext::HasStream}{wxdebugcontexthasstream}\section{\class{wxDebugStreamBuf}}\label{wxdebugstreambuf}This class allows you to treat debugging output in a similar(stream-based) fashion on different platforms. UnderWindows, an ostream constructed with this buffer outputsto the debugger, or other program that intercepts debuggingoutput. On other platforms, the output goes to standard error (cerr).This is soon to be obsolete, replaced by \helpref{wxLog}{wxlog} functionality.\wxheading{Derived from}streambuf\wxheading{Include files}<wx/memory.h>\wxheading{Example}\begin{verbatim}  wxDebugStreamBuf streamBuf;  ostream stream(&streamBuf);  stream << "Hello world!" << endl;\end{verbatim}\wxheading{See also}\overview{Overview}{wxdebugcontextoverview}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -