我的c ++类项目出错了

时间:2015-09-29 19:00:03

标签: c++

我在添加分数的算法中出现此错误。 错误是: 在“_”标记之前预期的非限定标识 有人可以解释一下这个错误的含义。我在网上查了一下,并没有真正理解任何事情。

Rational.cpp

public String toString() {
    String s = "";
    int indexUsed = 0;
    System.out.println("Inside of toString");
    for(int i = 0; i < indexUsed; i++) 
        s= (s + pizza[i].toString());
        System.out.println("Inside of toString for loop");

    return s;
}

1 个答案:

答案 0 :(得分:3)

应该有:

Rational dem; // space instead of .