parallel101 / parallel101/course

访问者设计模式缺少继承

Open Beginner friendly
#35 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
C++
Stars
4.2k
Forks
556
PR merge metrics
No merged PRs in 30d

Description

https://github.com/parallel101/course/blob/8c890ba00bc452af8d66c419a27998297378679e/slides/design/game.md?plain=1#L1000
修改为:

struct MoveMessage :Message{
    glm::vec3 velocityChange;

    void accept(MessageVisitor *visitor) override {
        visitor->visit(this);  // 会调用到 visit(MoveMessage *mm) 这个重载
    }
};

struct JumpMessage :Message{
    double jumpHeight;

    void accept(MessageVisitor *visitor) override {
        visitor->visit(this);  // 会调用到 visit(JumpMessage *mm) 这个重载
    }
};

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Open slides/design/game.md around line 1000 and review the visitor-pattern example. Update the example to show MoveMessage and JumpMessage inheriting from Message with accept methods dispatching to the corresponding visitor overloads. Done means the slide accurately demonstrates inheritance and double dispatch in C++.

Written by the indexing model from the issue text.

Assessment

Tech stack
cpp
Domain
documentation
Issue type
Documentation
Difficulty
1/5
Estimated time
1-3 hours
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
68/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.