问题: 该程序编译并运行,但我想知道如何解决此突出显示错误?
操作系统统计信息:
Mac OS X 10.8.5
Netbeans统计数据:
产品版本:NetBeans IDE 8.0(Build 201403101706)
更新:NetBeans IDE已更新为NetBeans 8.0 Patch 2版本
Java:1.8.0_05; Java HotSpot(TM)64位服务器VM 25.5-b02
运行时:Java(TM)SE运行时环境1.8.0_05-b13
系统:在x86_64上运行的Mac OS X 10.8.5版; UTF-8; en_US(nb)
标志:
clang ++ -stdlib = libc ++ -std = c ++ 11
代码:
#include <iostream>
#include <thread>
#include <chrono>
int main( ) {
std::cout << "i work fine" << std::endl;
std::chrono::milliseconds dura(2000);
std::this_thread::sleep_for(dura);
std::cout << "done" << std::endl;
return(0);
}
问题:
代码编译并运行,但#34; #include&#34;和&#34; #include&#34;被突出显示为警告以及&#34; chrono&#34; in&#34; std :: chromo&#34;和&#34; this_thread&#34;在&#34; std :: this_thread&#34;。
问题: 如何阻止Netbeans错误地突出显示上述警告?谢谢!