能运行c程序但不能运行c++?

2025-01-03 17:00:30
推荐回答(6个)
回答1:

struts2:xml文件配置:

../index.jsp
/order/address_form.jsp

利用hibernate查询数据库代码:
public User findByIdCode(int id) throws SQLException {
String hql=" From User where id=?";
List list=this.getHibernateTemplate().find(hql, new Object[]{id});
return (User)list.get(0);
}
action类中的代码:
public String execute(){
User user=userService.finByEmail(name);
if(user!=null&&user.getPassword().equals(password)){
return "login";
}else{
return "false";
}

}

回答2:

你把
#include
写成
#include
using namespace std;
试试、、、、
或者你看一下你的文件类型是.c还是.cpp、

回答3:

试试 iostream 不需要加后缀试试
另外
加上using namespace std;

回答4:

看你的文件是.c还是.cpp,c语言的头文件包含“.h”, 而c++的头文件没有".h",直接用#include 吧。

回答5:

vs2008
只能写#include

回答6:

你把头文件改成#include试试