{"id":22372404,"url":"https://github.com/1chooo/object-oriented-analysis-and-design-writeups","last_synced_at":"2026-05-06T07:35:25.811Z","repository":{"id":224547581,"uuid":"762677295","full_name":"1chooo/object-oriented-analysis-and-design-writeups","owner":"1chooo","description":"✍🏻 NCU-SE6029-2024-Spring-Object-Oriented Analysis and Design (OOAD) Notes","archived":false,"fork":false,"pushed_at":"2024-05-22T17:58:24.000Z","size":6536,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-22T18:59:41.817Z","etag":null,"topics":["cpp","java","mob-programming","object-oriented-programming"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/1chooo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-24T11:34:42.000Z","updated_at":"2024-05-28T18:28:20.123Z","dependencies_parsed_at":"2024-05-28T18:28:19.026Z","dependency_job_id":"6604e40a-3e0a-4ff3-88b0-2ff92e090d0c","html_url":"https://github.com/1chooo/object-oriented-analysis-and-design-writeups","commit_stats":null,"previous_names":["1chooo/object-oriented-programming-writeups","1chooo/object-oriented-analysis-and-design-writeups"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1chooo%2Fobject-oriented-analysis-and-design-writeups","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1chooo%2Fobject-oriented-analysis-and-design-writeups/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1chooo%2Fobject-oriented-analysis-and-design-writeups/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1chooo%2Fobject-oriented-analysis-and-design-writeups/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1chooo","download_url":"https://codeload.github.com/1chooo/object-oriented-analysis-and-design-writeups/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245699259,"owners_count":20657987,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","java","mob-programming","object-oriented-programming"],"created_at":"2024-12-04T20:38:33.775Z","updated_at":"2026-05-06T07:35:20.792Z","avatar_url":"https://github.com/1chooo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Object Oriented Analysis and Design Writeups\n\n\u003e 2024-Spring-OOAD  \n\u003e\n\u003e *NO OFFENSE MEANS I AM ABOUT TO INSULT YOU, BUT DONT GET MAD*\n\n\n## [`C++` Project Templates Structure](./templates/)\n\n```\nPROJECT_ROOT\n├── bin/\n│   └── main.out\n├── include/\n│   └── *.h\n├── src/\n│   └── *.cpp\n├── test/\n│   └──   :\n└──  build.sh\n```\n\n### How to **compile and execute** the `MAIN PROGRAM` with this templates?\n```sh\ng++ -Iinclude -o src/*.cpp -o bin/main.out \u0026\u0026 ./bin/main.out\n```\n\n## Genuine Understanding V.S. Superficial Knowledge.\n\n```cpp\nclass EmployeeCensus: public ListContainer {\n\npublic:\n    ...\n    // public routines\n    void AddEmployee ( Employee employee ); \n    void RemoveEmployee ( Employee employee );\n    Employee NextItemInList();\n    Employee FirstItem;\n    Employee LastItem;\n    ...\nprivate:\n    ...\n}\n```\n\n- 搞笑題目 (例如，前 10 名搶答者有分)\n- 名詞解釋 (前 30% 滿分，中間 30% 60 分，尾巴 40% 30 分)\n- 嚴重思考題 (對比較重要，不搶答，給你滿滿的時間)\n\n\u003e [!WARNING]\n\u003e 喔！你抄襲就 0 分，你給別人抄襲你就變成 50% 分數\n\n每一題公告之前會告知哪一種類型\n\n\n## Materials\n\n- [Software Engineering Basics](./materials/00-software-engineering-basics/)\n- [Classes and Object](./materials/01-classes-and-object/)\n- [Pointer, Reference](./materials/01-5-pointer-reference/)\n- [Inheritance](./materials/02_inheritance/)\n- [Why You Should Not Abuse Inheritance Over Composition](./materials/02-6-why-you-should-not-abuse-inheritance-over-composition/)\n- [Polymorphism](./materials/03-polymorphism/)\n- [Multiple Inheritance](./materials/04-multiple-inheritance/)\n\n## Collaboration Guidelines\n### Forking this Repository:\n\nFork the [`object-oriented-analysis-and-design-writeups`](https://github.com/1chooo/object-oriented-analysis-and-design-writeups) repository into your own workspace.\n\n### Cloning the Repository to Your Workspace:\n\n```shell\n$ git clone git@github.com:\u003cyour_workspace_name\u003e/object-oriented-analysis-and-design-writeups.git\n```\n\n### Setting Upstream Remote:\n```shell\n$ git remote add upstream git@github.com:1chooo/object-oriented-analysis-and-design-writeups.git\n\n$ git remote -v\norigin  git@github.com:\u003cyour_user_name\u003e/object-oriented-analysis-and-design-writeups.git (fetch)\norigin  git@github.com:\u003cyour_user_name\u003e/object-oriented-analysis-and-design-writeups.git (push)\nupstream        git@github.com:1chooo/object-oriented-analysis-and-design-writeups.git (fetch)\nupstream        git@github.com:1chooo/object-oriented-analysis-and-design-writeups.git (push)\n```\n### Pull Requests:\nIf you have any valuable ideas to contribute, please create a pull request and provide details about the outstanding work you've done.\n\n### Issue Reporting:\nIf you encounter any problems while contributing to this project, please report the issues in the [object-oriented-analysis-and-design-writeups/issues](https://github.com/1chooo/object-oriented-analysis-and-design-writeups/issues) section.\n\n\n### Important Notes:\n\u003e [!IMPORTANT]  \n\u003e #### Make sure to synchronize and update your repository before initiating a pull request:\n\u003e 1. Run `git stash save` to temporarily stash your local changes.\n\u003e 2. Run `git fetch upstream` to sync the source project with your local copy.\n\u003e 3. Run `git checkout main` to switch to the main branch.\n\u003e 4. Run `git merge upstream/main` to merge the updated remote version into your local copy. If there are no conflicts, the update process is complete.\n\u003e 5. Run `git stash pop` to apply your temporarily stashed changes back to your working directory. Resolve any conflicts if necessary.\n\n\n## CONTACT INFO.\n\n\u003e eCloudValley Cloud Developer Intern \u003c/br\u003e\n\u003e **Hugo ChunHo Lin**\n\u003e \n\u003e \u003caside\u003e\n\u003e   📩 E-mail: \u003ca href=\"mailto:hugo970217@gmail.com\"\u003ehugo970217@gmail.com\u003c/a\u003e\n\u003e \u003cbr\u003e\n\u003e   🧳 Linkedin: \u003ca href=\"https://www.linkedin.com/in/1chooo/\"\u003eHugo ChunHo Lin\u003c/a\u003e\n\u003e \u003cbr\u003e\n\u003e   👨🏻‍💻 GitHub: \u003ca href=\"https://github.com/1chooo\"\u003e1chooo\u003c/a\u003e\n\u003e    \n\u003e \u003c/aside\u003e\n\n\n## License\nReleased under [MIT](./LICENSE) by [Hugo ChunHo Lin](https://github.com/1chooo).\n\nThis software can be modified and reused without restriction.\nThe original license must be included with any copies of this software.\nIf a significant portion of the source code is used, please provide a link back to this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1chooo%2Fobject-oriented-analysis-and-design-writeups","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1chooo%2Fobject-oriented-analysis-and-design-writeups","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1chooo%2Fobject-oriented-analysis-and-design-writeups/lists"}