国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

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分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    日韩一区二区三区在线播放| 国产精品视频在线观看| 久久综合亚洲精品| 国产精品高清网站| 欧美亚洲国产日本| 久久久之久亚州精品露出| 欧美激情xxxx| 精品视频在线观看一区二区 | 国产精品美女999| 日本一区二区在线视频观看| 国产玖玖精品视频| 欧美成人免费va影院高清| 日韩伦理一区二区三区av在线 | 久激情内射婷内射蜜桃| 亚洲在线观看视频| 国产伦精品一区二区三区照片| 国产精品都在这里| 欧美少妇一区| 精品国产视频在线| 欧日韩在线观看| 久久久久久九九九九| 日本不卡久久| 久久成人资源| 日韩区国产区| 久久精品国产精品国产精品污| 日本手机在线视频| 久久久久久久久久亚洲| 日韩精品一区在线视频| 国产成人自拍视频在线观看| 精品国产一区av| 精品日产一区2区三区黄免费| 久久精品国产久精国产思思| 欧美又大粗又爽又黄大片视频| 日韩在线播放一区| 欧美精品一区在线发布| 国产精品嫩草影院久久久| 国内揄拍国内精品| 欧美激情视频网| 中文字幕在线中文| 97精品伊人久久久大香线蕉| 婷婷久久五月天| 日韩在线播放视频| 国产自偷自偷免费一区| 久久亚洲精品毛片| 国产精品一区二区三区不卡 | 久久久天堂国产精品女人| 亚洲蜜桃av| 日韩最新免费不卡| 狠狠色伊人亚洲综合网站色| 国产精品加勒比| 高清无码视频直接看| 亚洲不卡中文字幕| 国产成人精品久久二区二区91| 欧美综合在线观看| 欧美精品在线极品| 97人人模人人爽人人喊中文字| 亚洲一二区在线| 国产成年人在线观看| 亚洲一区二区三区精品视频| 久久久久久久香蕉| 国产综合中文字幕| 亚洲国产精品视频一区| 久久久久久久久久福利| 毛片一区二区三区四区| 亚洲综合日韩在线| 日韩中文综合网| 国产欧美精品一区二区三区| 亚洲wwwav| 久久久国产精品一区| 成人免费网站在线| 久久五月天色综合| 国产精品99一区| 欧美h视频在线观看| 伊人久久大香线蕉av一区| 久久久久国产精品视频| 国内精品一区二区| 色婷婷综合久久久久中文字幕| 国产精品日韩在线| 久久久视频免费观看| 国内精品视频久久| 亚洲欧美在线网| 久久视频中文字幕| 91久久精品一区二区别| 激情欧美一区二区三区中文字幕| 免费av在线一区| 日韩专区中文字幕| 国产精品亚洲第一区| 人妻无码视频一区二区三区| 在线国产精品网| 国产精品美女久久久久av福利| 国产精品.com| 国产日本欧美一区二区三区在线| 日韩欧美精品免费| 亚洲欧洲一区二区福利| 国产精品久久久久久久久免费| 国产激情在线观看视频| 国产精品夜夜夜一区二区三区尤| 欧美精品99久久| 日本不卡一区二区三区四区| 亚洲黄色网址在线观看| 宅男av一区二区三区| 国产精品久久久久久五月尺| 国产精品97在线| 国产久一一精品| 国产在线资源一区| 欧美一区二区影视| 日本wwww视频| 偷拍盗摄高潮叫床对白清晰| 欧美极品美女电影一区| 国产精品久久久久久久av电影| www亚洲精品| 久久久久中文字幕| 久久男人av资源网站| 99久久精品免费看国产四区| 国产乱码一区| 国产日韩欧美日韩大片| 免费久久久一本精品久久区| 欧洲精品久久久| 日本不卡久久| 日韩国产一级片| 日本高清久久天堂| 日韩aⅴ视频一区二区三区| 亚洲精品国产精品国自产| 欧美极品在线视频| 欧美精品电影在线| 久久久久久18| 最新av在线免费观看| 久操成人在线视频| 久久av.com| 欧美大片va欧美在线播放| 国产精品日韩三级| 国产精品免费看久久久香蕉| www.亚洲成人| 国产精品区一区二区三含羞草| 久久久av网站| 国产精品视频999| 国产精品久久久久久久久久久久冷 | 久久久久久久久久久人体| 69久久夜色精品国产69乱青草| 91精品视频在线播放| 91久久精品美女| 久久久av水蜜桃| 日韩中文字幕国产| 久久精品视频亚洲| 国产精品麻豆免费版| 欧美成人四级hd版| 欧美巨猛xxxx猛交黑人97人| 欧美激情a∨在线视频播放| 亚洲午夜精品久久久中文影院av| 在线视频不卡一区二区| 亚洲视频精品一区| 视频一区二区视频| 日韩精品成人一区二区在线观看| 欧美亚洲第一区| 国产视频福利一区| 99精品视频播放| 国产成人高潮免费观看精品 | 亚洲午夜精品一区二区| 五码日韩精品一区二区三区视频| 人人妻人人澡人人爽欧美一区双| 黄色91av| 国产精品亚洲a| 久久精品magnetxturnbtih| 日韩在线播放av| 久久久精品电影| 欧美激情亚洲综合一区 | 九九久久国产精品| 午夜欧美不卡精品aaaaa| 奇米888一区二区三区| 美女视频久久| 91久色国产| www.精品av.com| 欧美人交a欧美精品| 无码人妻精品一区二区三区66| 青草成人免费视频| 精品人伦一区二区三区| 国严精品久久久久久亚洲影视| 国产欧美一区二区三区不卡高清 | …久久精品99久久香蕉国产 | 在线码字幕一区| 日韩女优在线播放| 国产一区免费视频| 久久免费视频1| 国产精品久久久| 电影午夜精品一区二区三区| 欧美激情国产精品日韩| 超碰在线97av| 久久综合伊人77777尤物| 在线观看成人av| 欧美日韩一区在线视频| 成人一级生活片| 国产成人免费91av在线| 伊人久久大香线蕉综合75| 欧美中文字幕在线视频| 国产伦精品一区二区三| www.日韩av.com| 无码日韩人妻精品久久蜜桃| 国产一区二区在线免费| 久草精品电影| 亚洲综合色av|