中英
threadsafe
  • 简明
  • adj.线程安全:在计算机编程中,指一个程序、函数或数据结构可以在多线程环境下安全地使用,不会出现数据竞争或其他线程相关的问题。
  • 双语例句
  • 1
    In general, to be THREADSAFE, a routine should not use any global or static data areas.
    一般来说,要想定义为THREADSAFE,例程不应该使用任何全局或静态数据区域。
  • 2
    If the procedure is defined as THREADSAFE, the database manager can invoke the procedure in the same process as other routines.
    如果过程定义为THREADSAFE,数据库管理器就可以在其他例程的进程中调用这个过程。
  • 3
    If the procedure is defined as not THREADSAFE, the database manager will never invoke the procedure in the same process as another routine.
    如果过程定义为NOT THREADSAFE,数据库管理器就绝不会在其他例程的进程中调用这个过程。
查看更多
  • 词源
1

threadsafe:

thread +‎ safe

FROM: wiktionary
  • 百科
  • ThreadSafe

    ThreadSafe is a source code analysis tool that identifies application risks and security vulnerabilities associated with concurrency in Java code bases, using whole-program interprocedural analysis. ThreadSafe is used by major investment banks and other companies to identify and avoid software failures in concurrent applications running in complex environments. These are among the most insidious of software defects because they can't be reliably detected by testing.

查看更多