为什么这不能在我的学校 unix 系统上编译?

Why won't this compile on my schools unix system?

本文关键字:系统 编译 unix 学校 不能 我的 为什么      更新时间:2023-10-16

我在家里完成了一项作业,在我的编译器上运行良好,但是当我将其上传到学校的Linux系统时,我无法对其进行编译。

这是我得到的错误:

Set.cpp: In destructor ‘Set::~Set()’:
Set.cpp:42:1: error: a function-definition is not allowed here before ‘{’ token
Set.cpp:55:1: error: a function-definition is not allowed here before ‘{’ token
Set.cpp:67:1: error: a function-definition is not allowed here before ‘{’ token
Set.cpp:193:1: error: expected ‘}’ at end of input

我不确定这里发生了什么,但我的程序在代码块中编译得很好。

#include "Set.h"
Set::Set()
{
    int i;
    for(i = 0; i <= 3; i++)
        bitString[i] = 0;
}

Set::Set(const Set& s)
{
}

Set::~Set()
{



//Functions for modifying the sets individually:


void Set::add(int i)
{
    unsigned int mask;
    int bit, word;
    word = i / 32;
    bit = i % 32;
    mask = 1 << bit;
    bitString[word] |= mask;
}

void Set::remove(int i)
{
    unsigned int mask;
    int bit, word;
    word = i / 32;
    mask = (1 << (i % 32)) ;
    bitString[word] &= ~(mask);
}

int Set::size()
{
    unsigned size = 0;
    for (unsigned i = 0; i <= 3; ++i)
    {
        for (unsigned x = 0; x < 32; ++x)
        {
            if (bitString[i] & (1 << x))
                ++size;
        }
    }
    cout << "Size of this set is: " << size << endl;
    return size;
}

int Set::is_member(int i)
{
    int bit, word;
    word = i / 32;
    bit = i % 32;
    if((bitString[word] >> bit) & 1)
        return 1;
    else
        return 0;
}



//Operators Defined here:




void Set::operator=(const Set& s)
{
    int bits;
    for (bits = 0; bits <= 3; bits++)
    {
        bitString[bits] = s.bitString[bits];
    }
}
Set Set::operator-(const Set& s)
{
    Set result;
    int x;
    for (x = 0; x <= 3; x++)
    {
        result.bitString[x] = (bitString[x] & ~s.bitString[x]);
    }
    return result;
}
Set Set::operator&(const Set& s)
{
    Set result;
    int x;
    for (x = 0; x <= 3; x++)
    {
        result.bitString[x] = (bitString[x] & s.bitString[x]);
    }
    return result;
}

Set Set::operator|(const Set& s)
{
    Set result;
    int x;
    for (x = 0; x <= 3; x++)
    {
        result.bitString[x] = (bitString[x] | s.bitString[x]);
    }
    return result;
}

// XOR
Set Set::operator^(const Set& s)
{
    Set result;
    int x;
    for (x = 0; x <= 3; x++)
    {
        result.bitString[x] = (bitString[x] ^ s.bitString[x]);
    }
    return result;
}

// Print Result
void Set::printSet()
{
    unsigned size = 0;
    cout << "Set:  { b";
    for (unsigned i = 0; i <= 3; ++i)
    {
        for (unsigned x = 0; x < 32; ++x)
        {
            if (bitString[i] & (1 << x))
                cout << (x + (i * 32)) << ",";
        }
    }
    cout << "b}" << endl;
}

我认为问题出在以下代码中:

#include "Set.h"
Set::Set()
{
    int i;
    for(i = 0; i <= 3; i++)
        bitString[i] = 0;
}
Set::Set(const Set& s)
{
}
Set::~Set()
{

在析构函数中,您忘记关闭括号。这就是编译器抱怨的。它不会在任何系统中运行。您可以将其修改为:

Set::~Set()
{
}