Skip to content
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 #18

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions hw1/hw1/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,67 @@ public class LongProgressByTime: ILongProgressByTime

//挑战:利用原子操作
//long.MaxValue非常久
private long needTime = 0;
private long finishedTime = 0;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

finishedTime不作为字段,作为局部变量更好

private long startTime = 0;
private bool readystate = true;
private static readonly object lockobject = new();

public bool Start(long x)
{
lock(lockobject){
if (readystate)
{
readystate = false;
startTime = Environment.TickCount64;
needTime = x;
return true;
}
else
{
return false;
}
}
}
public bool TrySet0()
{
lock (lockobject)
{
finishedTime = Environment.TickCount64 - startTime;
if (finishedTime < needTime)
{
readystate = true;
return true;
}
else
{
return false;
}
}
}
public void Set0()
{
lock (lockobject)
{
readystate = true;
}
}
public (long ElapsedTime, long NeedTime) GetProgress()
{
lock (lockobject)
{
finishedTime = Environment.TickCount64 - startTime;
if (readystate == false)
{
return (finishedTime, needTime);
}
else
{
return (0, needTime);
}
}
}

}

/*输出示例(仅供参考):
Expand Down