Runtime是运行时的意思,Runtime Error就是运行时错误,就是在运行期间出现的错误。
程序中的错误分为源码级的和运行级的,源码级错误一般在你编译的时候,编译器就会提示你了。运行级错误只有在运行程序时才会发现。
Runtime error就说明这是一个运行级错误,发生错误的内存地址是011a4561,这个信息在你用做运行调试程序时有用。2是错误号,这就要看你用的是什么系统了,每个系统里对错误代码都有一系列定义。
这个说明你的开机加载项运行出问题了(可能是随机启动的一些软件或XP的系统后台文件加载错误),先关闭一些随系统一起启动的软件试试,如果不行应该是系统本身的后台加载程序出问题了,建议用系统盘修复一下试试。
另外的是关于运行时的引用:
webopedia 关于 运行时错误的定义:
http://www.webopedia.com/TERM/r/runtime_error.html
An error that occurs during the execution of a program. In contrast, compile-time errors occur while a program is being compiled. Runtime errors indicate bugs in the program or problems that the designers had anticipated but could do nothing about. For example, running out of memory will often cause a runtime error.(运行时错误是程序执行期间发生的错误,它不同于编译期间发生的错误.运行时错误可能是程序中的毛病引起的,也可能程序并无错误,例如机器存储器不够引起)
Note that runtime errors differ from bombs or crashes in that you can often recover gracefully from a runtime error.(运行时错误不同于炸弹或系统垮掉,运行时错误一般不影响操作系统运行)