Conversation
pccmast
commented
Dec 8, 2020
- 这个PR解答了当前仓库中的题目(机器人会自动判题并合并当前PR)
- 这个PR修复了当前仓库中的一些代码缺陷(机器人不会判题,而是由管理员来处理当前PR)
|
🎉 感谢提交Pull Request!请稍等片刻,我们已经将其提交到CI进行检查,一旦有结果会立即通知您! 我们不鼓励同时打开多个Pull Request,请集中精力于现在的这个Pull Request,谢谢!:pray: |
| import java.util.HashMap; | ||
| import java.util.List; | ||
| import java.util.Map; | ||
| import java.util.concurrent.*; |
There was a problem hiding this comment.
不应使用 '.*' 形式的导入 - java.util.concurrent.* 。
| return finalResults; | ||
| } | ||
|
|
||
| public static class readFileCallable implements Callable<Map<String, Integer>> { |
There was a problem hiding this comment.
名称 'readFileCallable' 必须匹配表达式: '^[A-Z一-鿿][a-zA-Z0-9一-鿿]*$' 。
| @@ -1,8 +1,72 @@ | |||
| package com.github.hcsp.multithread; | |||
|
|
|||
| import java.io.*; | |||
There was a problem hiding this comment.
不应使用 '.*' 形式的导入 - java.io.* 。
| package com.github.hcsp.multithread; | ||
|
|
||
| import java.io.*; | ||
| import java.util.ArrayList; |
There was a problem hiding this comment.
无用导入 - java.util.ArrayList 。
| return taskResults; | ||
| } | ||
|
|
||
| public static class readFileWordTask extends RecursiveTask<Map<String, Integer>> { |
There was a problem hiding this comment.
名称 'readFileWordTask' 必须匹配表达式: '^[A-Z一-鿿][a-zA-Z0-9一-鿿]*$' 。
| import java.io.FileNotFoundException; | ||
| import java.io.FileReader; | ||
| import java.io.IOException; | ||
| import java.util.ArrayList; |
There was a problem hiding this comment.
无用导入 - java.util.ArrayList 。
| import java.util.List; | ||
| import java.util.Map; | ||
| import java.util.concurrent.CountDownLatch; | ||
| import java.util.concurrent.ExecutionException; |
There was a problem hiding this comment.
无用导入 - java.util.concurrent.ExecutionException 。
|
你的提交 692dac6 ,似乎失败了:Your tests failed on CircleCI 😅 请不要气馁,仔细分析原因,再接再厉! |
| @@ -1,8 +1,77 @@ | |||
| package com.github.hcsp.multithread; | |||
|
|
|||
| import java.io.*; | |||
There was a problem hiding this comment.
不应使用 '.*' 形式的导入 - java.io.* 。
|
恭喜你,你的提交 a74a9e6 已经通过我们的CI检查:Your tests passed on CircleCI! 👍 它会被自动merge后revert。请不要骄傲,继续挑战! |