Ayarnte_55
@Ayarnte_55 (あやんて)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

C++のコードでexpected ')' のエラーが出る

次のコードを実行すると ()がきちんと対応しているはずなのに何故かエラーが起きてしまいます.
エラーの原因がわかる方教えていただけると助かります.

例)

発生している問題・エラー

main.cpp:19:28: error: expected ')'
main.cpp:19:27: note: to match this '('
  std::vector<Ball> mBall (3);```

NameError (uninitialized constant World)
```

該当するソースコード

#include <iostream>
#include <vector>

struct Vector2
{
  float x;
  float y;
};

struct Ball
{
  Vector2 Pos;
  Vector2 Vel;
};

class Game
{
private:
  std::vector<Ball> mBall(3);

};
0

2Answer

Comments

  1. @Ayarnte_55

    Questioner

    使い方が間違っているのでしょうか?
    vector<自分の作った型> 変数名(要素数)
    だと思うのですが...

Your answer might help someone💌