-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSharp_葛羿_无22 #14
Open
ggeeyyi
wants to merge
1
commit into
shangfengh:main
Choose a base branch
from
ggeeyyi:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
CSharp_葛羿_无22 #14
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
using System; | ||
using System; | ||
using System.Collections.Specialized; | ||
|
||
namespace Homework1 | ||
{ | ||
|
@@ -15,7 +16,8 @@ public static void Main(string[] args) // 该程序用于Debug | |
} | ||
catch (Exception e) | ||
{ | ||
Console.WriteLine(e.Message); | ||
if(i==1||i==5||i==11||i==17) | ||
Console.WriteLine(e.Message); | ||
} | ||
if (i % 3 != 0) | ||
{ | ||
|
@@ -57,36 +59,83 @@ public interface IProgress | |
|
||
public class Progress : IProgress | ||
{ | ||
// 一个进度条 | ||
// 只允许修改Progress类中的代码 | ||
// 要求实现IProgress中的要求 | ||
private static int count = 0; | ||
|
||
private int num; | ||
private int requiredProgress; | ||
private int finishedProgress; | ||
public int Num { get { return this.num; } } | ||
public int RequiredProgress { get { return this.requiredProgress; } } | ||
public int FinishedProgress { get { return this.finishedProgress; } } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 本意是希望能在set访问器里限制 FinishedProgress的范围的,特别是多人研发时能确保安全。 |
||
|
||
public Progress() | ||
{ | ||
this.num = ++count; | ||
this.requiredProgress = 0; | ||
this.finishedProgress = 0; | ||
} | ||
|
||
public bool Start(int requiredProgress) | ||
{ | ||
if (requiredProgress < 0) | ||
{ | ||
throw new ArgumentOutOfRangeException("RequiredProgress must be positive."); | ||
} | ||
if (this.finishedProgress == this.requiredProgress) | ||
{ | ||
this.requiredProgress = requiredProgress; | ||
this.finishedProgress = 0; | ||
return true; | ||
} | ||
return false; | ||
} | ||
|
||
public void Add(int addProgress) | ||
{ | ||
this.finishedProgress = Math.Min(this.finishedProgress + addProgress, this.requiredProgress); | ||
} | ||
|
||
public void Sub(int subProgress) | ||
{ | ||
this.finishedProgress = Math.Max(this.finishedProgress - subProgress, 0); | ||
} | ||
|
||
public void Double() | ||
{ | ||
this.finishedProgress = Math.Min(this.finishedProgress * 2, this.requiredProgress); | ||
} | ||
|
||
public (int FinishedProgress, int RequiredProgress) GetProgress() | ||
{ | ||
return (this.finishedProgress, this.requiredProgress); | ||
} | ||
} | ||
|
||
/* | ||
* 输出示例: | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(0, 0) | ||
(1, 2) | ||
(0, 2) | ||
(2, 2) | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(2, 2) | ||
(0, 6) | ||
(6, 6) | ||
(7, 8) | ||
(0, 8) | ||
(8, 8) | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(8, 8) | ||
(0, 12) | ||
(12, 12) | ||
(13, 14) | ||
(0, 14) | ||
(14, 14) | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(14, 14) | ||
(0, 18) | ||
(18, 18) | ||
(19, 20) | ||
*/ | ||
} | ||
/* | ||
* 输出示例: | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(0, 0) | ||
(1, 2) | ||
(0, 2) | ||
(2, 2) | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(2, 2) | ||
(0, 6) | ||
(6, 6) | ||
(7, 8) | ||
(0, 8) | ||
(8, 8) | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(8, 8) | ||
(0, 12) | ||
(12, 12) | ||
(13, 14) | ||
(0, 14) | ||
(14, 14) | ||
RequiredProgress must be positive. (Parameter 'Homework1.Progress') | ||
(14, 14) | ||
(0, 18) | ||
(18, 18) | ||
(19, 20) | ||
*/ | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
并不需要this.