日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CS-665程序代做、代寫Designs and Patterns

時間:2023-12-03  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CS-665: Software Designs and Patterns
Class Project
This document should not be disseminated outside the purview of its intended purpose.
You Choose (20 points)
GitHub Project Template Link
https://github.com/edorsini/cs-665-project-template
Application Description
One of the key requirements for this course is the final project, which counts for 20% of the
grade and must be completed individually. This project presents an opportunity for you to
demonstrate your software design skills by solving a problem that interests you and presents a
suitable challenge.
During the course, we have covered a variety of design patterns, including the Strategy, Factory
Method, Abstract Factory, Singleton, Prototype, Command, Observer, State, Template, Facade,
Decorator, Composite, Adapter, Proxy, Iterator, and Mediator patterns. However, there are many
additional design patterns that can be used in Java programming, as listed on the website Java
Design Patterns.
Boston University Metropolitan College
The final project provides you with the opportunity to showcase your understanding and use of
design patterns in solving a real-world problem.
Your main objective for the class project is to expand your knowledge of design patterns. You
should choose a design pattern that was not covered in our class, study it on your own, develop
a unique use case scenario for it, implement the pattern in your preferred programming
language, and create a presentation that showcases the design pattern and your scenario.
It is highly recommended to utilize a combination of design patterns in your project, as this
mirrors the way design patterns are utilized in real-world software projects.
To get started, you should review the list of design patterns and select one that you find
interesting. Some examples of important patterns that were not covered in depth in our class
include the Bridge, Builder, Callback, Delegation, and Thread Pool patterns.
Please note that your project idea should not be taken from existing books or websites and
should be a unique project based on your own original ideas.
Also note that the implementation of a graphical user interface is not necessary. To demonstrate
the functionality of your implementation, you should implement unit tests.
Tasks
Implementation Description (2 points)
In your implementation of this application, it is important to consider software design principles.
This section outlines the main software design concepts and their goals.
For example:
● Explain the level of flexibility in your implementation, including how new object types can
be easily added or removed in the future.
● Discuss the simplicity and understandability of your implementation, ensuring that it is
easy for others to read and maintain.
● Describe how you have avoided duplicated code and why it is important.
● If applicable, mention any design patterns you have used and explain why they were
chosen.
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
We recommend that you write this description in a README.md file using MarkDown format
(https://spec.commonmark.org/current/) and add the file to the root folder of your project. This
should be done after completing the other tasks in this assignment.
UML Class Diagram (5 points)
Develop a class model for your application, consisting of 5 to 8 of the most crucial classes, that
encompasses the features of the described use case scenario. Only include essential and
non-trivial methods.
Java Solution (13 points)
Utilize GitHub Classroom to create a private repository for your assignment.
● Commit your code to the private Github repository created for this assignment.
● Follow the project templates given to implement your project.
● Submit a zip file that includes the implementation package, with a README.md file
explaining how to compile and run the implementation. Ensure that the zip file includes
all subdirectories of the project, excluding any binary files. The zip file should not exceed
10MB in size and should only contain source files, not generated binaries.
● Provide clear and thorough documentation within the code. It is best to write the
documentation as the code is being implemented, rather than postponing it for later.
● Adhere to the Google Java Style Guide
(https://google.github.io/styleguide/javaguide.html).
● Ensure that the solution can be compiled using the mvn compile command.
● Implement JUnit tests to verify the functionality of the implementation. A minimum of
3-5 JUnit tests required.
The example below is found in the project template as an example in the following file:
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
Using GitHub
Use GitHub for all your assignments.
1. Sign up or log in to your GitHub account.
2. Click the "New repository" button, located on your GitHub dashboard.
3. Enter a name for your repository, and provide an optional description.
4. Select whether to initialize the repository with a README file, .gitignore file, or license.
5. Click the "Create repository" button.
Your new repository will be created, and you can start uploading your code and other files. If you
have an existing project, you can use the "Import code" feature to upload your files to the new
repository. You can then use the files that are provided here as the skeleton of your project:
https://github.com/edorsini/cs-665-project-template
Submission
When you have completed your assignment:
1. Ensure that you have the latest version of your code saved on your computer or
downloaded from GitHub.
2. Compile all results from the three tasks into a single document, such as a PDF file for
the UML diagrams.
3. Zip all of your code and the document together into one .zip file. Remember to remove
any binary files, which are usually found in the bin/ or target/ folders, as they can
significantly increase the size of your zip file.
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
4. Verify that you have correctly uploaded the zip file. To do this, download the file, unzip it,
and confirm that the contents are correct and that the file is not damaged. Please note
that we will only be able to evaluate the zip file uploaded to the blackboard, and any
incorrect or damaged files cannot be evaluated.
After completing your assignment, you can download a ZIP file of your repository using the
green download button on GitHub. Make sure to upload this ZIP file to Blackboard. It's important
to note that we will be grading both the final ZIP file uploaded to Blackboard and the history of
your GitHub repository. Both versions should match. The purpose of having a ZIP file on
Blackboard is to provide an archived copy of your assignment.
Grading
Your solution should be a standalone program that can be compiled and executed following the
instructions provided in the README.md file. It's recommended to utilize the provided project
template and utilize build tools like Maven to integrate your implementation. If your program
satisfies all the required functionality, compiles, and runs successfully, you will receive full
points. Grading will be based on the following evaluation criteria, and points will be deducted for
each task accordingly.
● Your UML diagram will be missing important components such as Interfaces/Classes,
which will result in a 5% reduction for each missing component.
● To compile your solution, we will use the "mvn clean compile" command after
downloading, unzipping, and running the command on your project. Your code must
compile using Java JDK 1.8 or else it will result in a 10% grade deduction for the
implementation task.
● If your code includes functionality bugs, a 10% deduction will be applied for each bug
found.
● Your submission should include a README.md file that clearly explains your conceptual
solution, the steps to compile and execute the code. Failure to include such a file or not
providing all requested information will result in a 10% reduction of points.
● Your program must implement the requested functionalities, and if it does not, a 10%
deduction will be applied for each missing functionality.
● We will use jplag (https://github.com/jplag/jplag) to programmatically check for
plagiarism. Any solutions that are found to be an exact duplicate of someone else's will
not be accepted, and we will contact you regarding the issue.
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
Late Work
Late work will not be accepted. We understand that exceptions can be made in extreme
circumstances with proper documentation. For instance, if you provide a doctor/dentist note that
verifies you were unable to meet the deadline due to illness, an extension may be granted.
Academic Misconduct in Programming
In a programming course like ours, it's crucial to understand the line between acceptable
collaboration and academic misconduct. Our policy on collaboration and communication with
classmates is straightforward: you may not share or receive code through any means, including
visually, electronically, verbally, or otherwise. Any other forms of collaboration are permitted.
When it comes to communication with individuals who are not classmates, TAs, or the instructor,
it is strictly prohibited. This includes posting questions or seeking assistance on programming
forums such as StackOverflow.
When using external resources such as the web or Google, a "two-line rule" applies. You may
search for information and access any web pages you need, but you may not incorporate more
than two lines of code from an external source into your assignment in any form. Even if you
alter the code, such as by changing variable names, it remains a violation to use more than two
lines of code obtained from an external source.
It is important to properly cite your sources by adding a comment to your code that includes the
URL(s) consulted during the construction of your solution. This not only helps to ensure
academic integrity but also aids in later recollection of your thought process.
Boston University Metropolitan College
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:COMP24011代做、Python程序語言代寫
  • 下一篇:COMP639代寫、c/c++,Python程序代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體 / 電磁 / 光學CAE代做
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
  • 豆包網頁版入口 Trae 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        欧美不卡视频一区| aaa欧美日韩| 国产高清一级片| 日韩欧美三级视频| 日韩在线视频一区| 97caopor国产在线视频| 日韩在线视频在线观看| 91精品国产91久久| 日韩欧美一级视频| 久久精品夜夜夜夜久久| 日韩高清在线不卡| 国产久卡久卡久卡久卡视频精品| 精品免费久久久| 久久久精品国产99久久精品芒果| 精品全国在线一区二区| 国产视频1区2区| 国产69精品久久久久孕妇国产69久久| 国产中文伊人| 久久精品不卡| 又黄又www的网站| 亚洲理论中文字幕| 国产91久久久久蜜臀青青天草二| 亚洲va中文字幕| 一二三区精品福利视频| 中文字幕欧美日韩| 国产偷久久久精品专区| 亚洲大片免费看| 欧美日韩一级黄| 日本va欧美va精品发布| 日韩中文在线中文网三级| 日韩在线视频网| 欧美不卡一区二区| 国产最顶级的黄色片在线免费观看| 欧美中文字幕在线| 亚洲乱码中文字幕| 中文字幕第一页在线播放| 午夜国产福利一区二区| 日本黄色一区二区三区| 中文字幕人成乱码在线观看| 日韩免费精品视频| 国产午夜在线观看| 国产www在线观看| 91午夜在线| 日韩在线中文视频| 欧美日韩精品高清| 久久夜色精品国产欧美乱极品| 日韩在线视频中文字幕| 尤物在线精品| 91精品国产高清| 亚洲一区在线观看免费| 日韩久久在线| 最近中文字幕在线中文高清版| 国产91久久久久| 国产黄在线观看免费观看不卡| 五月天久久比比资源色| av一区在线| 日韩欧美中文字幕在线视频| 精品亚洲成a人片在线观看| 韩国v欧美v日本v亚洲| 91久久大香伊蕉在人线| 玖玖在线免费视频| 欧美日韩中文字幕在线| 欧美黄页在线免费观看| 在线综合 亚洲 欧美中文字幕| 国产一级网站视频在线| 午夜伦欧美伦电影理论片| 在线国产91| 精品国产91乱高清在线观看| 国产123在线| 亚洲综合欧美在线| 日韩视频在线一区二区三区| 免费在线观看国产黄| 亚亚洲欧洲精品| 欧美一级免费观看| 亚洲一区精品电影| 91精品国产99| 香蕉人人精品| 欧美激情视频一区二区三区在线播放| 国产在线黄色片| 91久久精品视频| 日韩欧美亚洲视频| 国产成人精品av久久| 国产精品视频福利一区二区| 国产无套粉嫩白浆在线2022年| 欧美日韩视频在线| 欧美 日韩 国产 在线观看| 日韩视频精品在线观看| 91精品国产综合久久精品| 精品调教chinesegay| 国产啊啊啊视频在线观看| 欧美日韩中文精品| www.三级.com| 日本免费在线视频不卡一不卡二| 欧美色视频一区二区三区在线观看| 精品久久久视频| 欧美在线日韩在线| 国产欧亚日韩视频| 亚洲素人一区二区| 最近中文字幕在线中文视频| 国产对白在线| 亚洲视频色图| 亚洲欧洲日产国码av系列天堂| 中文字幕日韩精品在线| 精品无人国产偷自产在线| 久久精品夜夜夜夜久久| 久久婷婷综合国产| av丝袜在线| 香蕉视频亚洲一级| 中文字幕伊人| 国产 日韩 欧美 综合| 欧美日韩在线视频首页| 在线观看精品国产| 午夜成人鲁丝片午夜精品| 国产视频中文字幕在线观看| 不卡一区二区三区视频| 久久精品久久精品国产大片| 国产黄色片大全| 亚洲国内精品视频| 国精品产品一区| 久久精品一级爱片| 国产三级在线观看视频| 91精品国产综合久久久久久漫画| 在线视频色在线| 精品播放一区二区| 深夜福利一区二区| 午夜国产视频| 国产成人精品免费在线| 欧美日韩中文| 欧美日韩中文精品| 91麻豆精品在线| 欧美日韩在线不卡一区| 国产黄色一区| 最近中文字幕在线中文高清版| 日韩欧美专区在线| 麻豆精品99| 久久精品免费在线观看| 樱花草www在线| 精品欧美不卡一区二区在线观看| 日韩国产成人| 亚洲欧美中文字幕在线观看| 亚洲视频电影在线| 欧美日韩中文字幕精品| 久久精品国产视频| 国产欧美中文在线| 欧美日韩国产在线播放| 亚洲免费精品| 欧美日韩国产高清视频| 精品国内自产拍在线视频| 91精品国产入口| 1区2区3区在线视频| 成人一区而且| 蜜桃久久av| 亚洲人成欧美中文字幕| 中文字幕高清在线播放| 欧美一级免费在线观看| 亚洲精品中文字幕乱码三区| 天天综合天天综合| 日韩免费看网站| 亚洲女同中文字幕| 久久精品久久精品国产大片| 国产一区在线不卡| 精品久久九九| 日韩精品乱码av一区二区| 欧美日韩激情一区|