c++-C++代码有什么问题啊 求解答

问题描述

C++代码有什么问题啊 求解答

为什么编译器提示
Line3: error: expected unqualified-id before ';' token

解决方案

templete是用来修饰函数的,它后面不要分号。
你也可以写在一行

 templete <typename T> T max(T a, T b)
{
}

不知道为什么大家都喜欢写2行,是不是都是受谭浩强的误导。

解决方案二:

template模版定义后面不需要引号,你去掉就可以了

解决方案三:

max前面是不是少了<类型名>

解决方案四:

Line3: error: expected unqualified-id before ';' token

template语句不需要分号,去掉line 3的分号。

时间: 2024-11-01 11:44:16

c++-C++代码有什么问题啊 求解答的相关文章

代码- c# 重绘问题 求解答 doc.drawobjectlist 怎么获取

问题描述 c# 重绘问题 求解答 doc.drawobjectlist 怎么获取 由于刚学习c#,窗口全屏的时候,控件自适应移动位置,在移动的时候出现严重闪烁,自己查了一下,用双缓冲效果不大,所以用重绘,但是代码完全看不懂...求解答,doc.drawobjectlist是从哪里获取的? Rectangle rect = e.ClipRectangle; Bitmap bufferimage = new Bitmap(this.Width, this.Height); Graphics g =

代码-报错:ORA-12505 求解答

问题描述 报错:ORA-12505 求解答 报错:java.sql.SQLException: Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor (有两个类,一个是登录类,一个是登录的处理类) 主要代码:(登录类) protected void doGet(HttpS

biginteger-Java中n!的代码看不懂啊,求解释

问题描述 Java中n!的代码看不懂啊,求解释 import java.math.BigInteger; import java.util.*; public class Main{ protected static ArrayList table = new ArrayList(); static { table.add(BigInteger.valueOf(1)); } public static synchronized BigInteger factorial(int x) { for

JAVA代码编译出错:找不到符号,求解答

问题描述 JAVA代码编译出错:找不到符号,求解答 源代码: package com.tarena.shoot; import java.util.Random; //Airplane----敌机既是飞行物, public class Airplane extends FlyingObject implements Enemy{ private int speed = 2;//敌机走步的步数 public Airplane(){ image = ShootGame.airplane; width

网页设计与开发-网页设计,有一段代码太冗长了,求帮忙优化下!!!感激不尽!!!

问题描述 网页设计,有一段代码太冗长了,求帮忙优化下!!!感激不尽!!! 在最底下的那一段script代码太冗长了,求帮忙优化下,感激不尽!!! 以下是己完成的代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <style> .explain_box{ float:lef

point-JAVA题目,求解答,求代码!!!!

问题描述 JAVA题目,求解答,求代码!!!! 设计一个Point类,类中包含点的坐标x.y,同时,包含一个通过另一个点求两点之间距离的distance(Point p)方法.利用该类实现点(34)到点(56)的距离. 解决方案 坐等大神解答...... 解决方案二: public class Point { private int xValue; private int yValue; public Point(int xValue int yValue) { this.setxValue(x

代码-缓存流的问题,新手求解答

问题描述 缓存流的问题,新手求解答 import java.io.*; public class Student { public static void main(String[] args) { // TODO Auto-generated method stub String[] content={"好久不见","你好吗","常联系"}; File file=new File("word.txt"); try{ File

滚动条代码-vs中编写了个关于垂直滚动条的代码,其中有几处不理解,求解答

问题描述 vs中编写了个关于垂直滚动条的代码,其中有几处不理解,求解答 这是代码: #include #include"resource.h" LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { static char szAppName

c-C语言输出数字团,代码为什么出现Segmentation fault,求解释并纠错??

问题描述 C语言输出数字团,代码为什么出现Segmentation fault,求解释并纠错?? //题目:输出字符串里数字团,以及个数.比如89cy129 //就输出89,129,一共2个数. 代码在这个百度知道的问题上:well,看来百度知道上面没有人会做? 跪谢!!! 源代码: include int main() { int a[80],i=0,*pa,an=0; char str[80],*pstr=str; void getnum(char pstr); gets(str); get