未来开发者 2015-10-17 03:18 采纳率: 0%
浏览 1484

我的java难道是盗版吗(调用有返回值的函数无响应)

boolean flag = pcSystem.returnTenderResult(bidDocu,tenderDocu);

我在自定义pcSystem类中调用一个具有boolean返回值的函数returnTenderResult(synchronized)

这条语句的上一条语句都会执行,而returnTenderResult内方法一定概率上不执行

(方法内的第一条语句都没有执行,还不涉及方法内具体逻辑),系统涉及了多线程,

这是为什么啊

 public synchronized boolean reviewOtherCommForhelpTask(BidDocu bidDocu,TenderDocu tenderDocu) throws IOException{//评审其他社区寻求帮助任务的时间及资源
        boolean flag = false;
//      ====================================
        Date nowDate = new Date();

        String log = "reviewOtherComm,当前用时"+(nowDate.getTime()-TimerManager.getTimerStamp()[0])+
                "ms"+System.getProperty("line.separator");
        TakeNotes.recordLogs(commid, log);
//      ====================================
        if(bidDocu.getFid()<=CommMessageManager.pcFid){
            //PC
//          ====================================
                    nowDate = new Date();
                    log = "check Pc Task,当前用时"+(nowDate.getTime()-TimerManager.getTimerStamp()[0])+
                            "ms"+System.getProperty("line.separator");
                    TakeNotes.recordLogs(commid, log);
//                  ====================================
            flag = pcSystem.returnTenderResult(bidDocu,tenderDocu);
        }else {
            //Robot
//          ====================================
                    nowDate = new Date();
                    log = "check Robot Task,当前用时"+(nowDate.getTime()-TimerManager.getTimerStamp()[0])+
                            "ms"+System.getProperty("line.separator");
                    TakeNotes.recordLogs(commid, log);
//                  ====================================
            flag = robotSystem.returnTenderResult(bidDocu,tenderDocu);
        }
        return flag;
    }
 public synchronized boolean returnTenderResult(BidDocu forHelpBidDocu,TenderDocu tenderDocu) throws IOException{
        Date nowDate = new Date();
        String log;
        boolean flag = false;
//      =================================
        nowDate = new Date();
        log = "returnTenderResult,当前时间"+
                (nowDate.getTime()-TimerManager.getTimerStamp()[0])+"ms"+
                    System.getProperty("line.separator");
        TakeNotes.recordLogs(commid,log);
//      =================================
}
  • 写回答

4条回答 默认 最新

  • IT_Trojan 2015-10-17 04:10
    关注

    是不是多线程的问题,执行顺序是怎么样的

    评论

报告相同问题?

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境