VS2008 之 C4819 Warning

出现该Warning会导致两个问题:

1、Debug时,无法打断点调试,运行光标不停留,直接全速运行。

2、在对代码要求严格的时候,需要消除代码中的每一个Error,每一个Warning。

 

Microsoft对C4819的解释为:

warning C4819: The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss.

C4819 occurs when an ANSI source file is compiled on a system with a codepage that cannot represent all characters in the file.

To resolve C4819, save the file in Unicode format

 

文中说的很明白,就是ANSI  和UNICODE的兼容或匹配问题。那么如何解决呢?

 

解决方法:打开出现warning的文件,Ctrl+A全选,然后在文件菜单:file->advanced save options ,在弹出的选项中选择新的编码方式为:UNICODE codepage 1200 ,点击确定,保存工程,重新Rebuild Solution。问题就解决了。

你可能感兴趣的:(VS2008)