启动C++test时报错“an error has occurred, null”

当双击桌面的C++test图标时,弹出错误:“an error has occurred,please check the log file, null”
 
解决方式如下图所示:
 
通过命令行方式启动C++test,并且添加必要的参数选项”-clean”,如下图示:
 
 
 
参考资料:

I am currently using Eclipse Indigo Service Release 1 and out of a sudden received a strange error message when trying to open my workspace, or in fact any workspace:

An error has occurred. See the log file [WORKSPACE-DIR]/.metadata/.log.

Inspecting the log file, it seems that this behaviour was caused by an OutOfMemoryError error in a subpackage of org.eclipse.core which is somewhat strange, as I have plenty of memory available for the VM. A Google search for the error, suggested to invoke Eclipse via the command line with the -clean option:

eclipse/dir> eclipse -clean 

Eclipse successfully started again and subsequently also without the -clean option. However, an interesting message was writen into the log file:

!MESSAGE The -clean (osgi.clean) option was not successful. Unable to clean the storage area: C:eclipse-direclipseconfigurationorg.eclipse.osgi.

 
Nevertheless, Eclipse is working fine again and I am not experiencing any problems while programming, so I guess that inspite of the log message, the -clean option works.
原文地址:https://www.cnblogs.com/kwang-cai/p/5485166.html