单词 | join point | ||||||||||||
释义 | join point
更多释义 收起释义 例句释义: 连接点,联结点,联接点 1. At the heart of each of the AOP tools is a join point model, which provides a means of identifying where the crosscutting is happening. 位于每个AOP工具核心的是连接点模型,它提供了一种机制,可以识别出在哪里发生了横切。 www.ibm.com 2. The Highlighter aspect captures the return value of a join point and replaces it with a highlighted version of the same. Highlighter方面捕获联结点的返回值并换成突出显示的版本。 www.ibm.com 3. If I declared that the advice returns Object, I could use the advice at any join point. 如果我声明该通知返回Object,就可以在任何连接点上使用该通知。 www.ibm.com 4. With AOP, we need to look from the outside in, and determine the effects of each aspect on every possible join point. 在AOP中,我们需要从外向内来看,并确定在可能的连接点上每个方面的效果。 www.ibm.com 5. Method at a join point in an around advice, AspectJ handles this situation for me without requiring any special effort. 方法,那么AspectJ会替我处理这种情况,不需要做任何特别的工作。 www-128.ibm.com 6. Matches the initialization join point of any object with the. 标注与任何物件的初始化连接点匹配。 www-128.ibm.com 7. To seek the best join point of teaching and learning, teachers must integrate the course content and the factual competence of students. 要活跃课堂气氛、调动学生的学习兴趣和课堂参与热情;增强其外语听说能力; www.waiwenfanyi.com 8. Spring AOP takes a different approach and purposely limits the expressiveness of its join point model. SpringAOP采用了不同的技术,目的是限制它的连接点模型的表现力。 www-128.ibm.com 9. Next, I'll quickly review the basics of AOP's join point model and explain where it would benefit from metadata fortification. 下一步,我将快速地回顾AOP的连接点模型的基本内容,并说明它从元数据增强中可以获得哪些好处。 www.ibm.com 10. A join point is an identifiable point in the execution of a system. 连接点是系统执行中的一个可标识的点。 www.ibm.com 1. The content assist pop-up shows all the join point context available within the advice body. 内容辅助弹出对话框则显示了通知体中所有可以使用的连接点上下文。 www.ibm.com 2. Join point is an abstract notion; one does not actively define a join point. 连接点是个抽象的概念;不用主动定义一个连接点。 www.ibm.com 3. In AspectJ, lots of advice can run at a join point without knowing anything about other advice at the join point. 在AspectJ中,大量通知可以在一个连接点上运行,而无需知道该连接点上的其他通知。 www.ibm.com 4. A join point is a point in the execution of a program where you can usefully join behavior. 连接点是程序执行中可以有效连接行为的点。 www.ibm.com 5. When this is the case, this technique of tracking state from one join point to be used in a later one is quite helpful. 在出现这种情况时,一个切入点的跟踪状态可以在后一个切入点中使用这项技术就会非常有帮助。 www.ibm.com 6. Another run-time performance benefit results from static typing of join point parameters in AspectJ and AspectWerkz. 另外一个运行时的性能优势来自AspectJ和AspectWerkz中连接点参数的静态类型检查。 www.ibm.com 7. Similarly, around advice can declare a return value ( "void" above), which requires any join point have the same return value. 类似地,around通知可以声明一个返回值((上面的“void”),要求所有链接点具有同样的返回值。 www.ibm.com 8. A join point indicates a point in the source code of the target class where you want to inject the aspect's code. 联接点指示您要在目标类的原始程式码中注入方面代码的点。 msdn.microsoft.com 9. Keep in mind that Annotations should describe what is true at the join point (condition) - not what should happen at those points (action). 记住,注解应该在连接点处描述什么是“true”(条件)——在这些points处什么不应该发生(动作)。 www.infoq.com 10. In these cases you can query the object representing the advised join point for its associated annotations. 在这种情况下,可以查询表示已通知连接点的对象来获得相关的注释。 www-128.ibm.com 1. Provides a join point for multiple input messages that enables message aggregation. 提供多个输入消息的联接点,该联接点支持消息聚合。 www.ibm.com 2. Matches any join point where the arguments have the given annotation. 匹配的连接点的参数拥有指定注释。 www-128.ibm.com 3. Advice is executable code that runs when the join point is encountered during the program runs. 参考建议是一种可执行的编码,当连接点遭遇到程序运行时,它就需要运行。 www.ibm.com 4. Is a language-specific construct that denotes or captures a particular join point. 是特定于语言的结构,它表示或捕捉某个特定的连接点。 www-128.ibm.com 5. Both the annotation and the newly created instance are captured as context at the join point. 标注和新创建的实例,都在连接点上作为上下文被捕捉到。 www.ibm.com 6. Matches any join point within a type that has a given annotation. 匹配的连接点在拥有指定注释的类型内部。 www-128.ibm.com 7. A join point is a well-defined point in the code at which our concerns crosscut the application. 一个连接点是在代码中被很良好定义的,我们所关注的应用程序横切的点。 www.ibm.com 8. The net effect of Listing 7 is to record a count whenever I exit a monitored join point by throwing an exception. 清单7中最后的效果是,在通过抛出异常退出一个监视的连接点时记录一个计数。 www-128.ibm.com 9. A join point is where the main program and the aspects meet. 连接点就是主程序和方面相遇的地方。 www.ibm.com 10. In this section, I'll review the AOP join point model and the language mechanisms that leverage it. 在这一节中,将回顾AOP的连接点模型以及利用连接点模型的语言模型。 www.ibm.com 1. AOP offers another way to specify an abstraction: as a pointcut specifying a join point. AOP提供了描述抽象的另一种方法:说明连接点的切入点。 www.ibm.com 2. Precondition tests are handled by before advice, which is executed just before the corresponding method execution join point. 前置条件测试由before建议处理,该建议就在对应的方法执行连接点之前执行。 www.ibm.com 3. The second statement identifies the exact join point where the advice is executed and makes use of the AspectJ JoinPoint class. 第二条语句指明了通知被执行的确切连接点,并且应用了AspectJ的JoinPoint类。 www.ibm.com 4. This yields a performance boost since join point context doesn't need to be accessed reflectively. 这会带来性能飞跃,因为不需要以反射的形式访问连接点上下文了。 www.ibm.com 5. In our example, we choose to perform the logging immediately after the updating method in the join point returns. 在我们的例子中,我们选择连接点返回中的更新方法之后立即运行日志。 www.ibm.com 6. They execute before the join point, after the join point, and instead of the join point, respectively. 他们分别在连接点之前,之后,或是取代连接点而执行。 www.ibm.com 7. Advice is code that executes before, after, or around a join point. Advice是在joinpoint之前、之后或周围执行的代码。 www.ibm.com 8. This gives the benefit of static typing for join point context. 这为连接点上下文提供了静态类型化的好处。 www-128.ibm.com 9. A join point is a precise point of execution in a program, such as a method found in a class. 一个连接点(joinpoint)是程序执行中一个精确执行点,比如类中的一个方法。 www.ibm.com 10. Two pieces of advice at a join point are not visible to each other, and they only bind the join point context variables they declare. 一个连接点上的两个通知彼此是不可见的,它们都只绑定在它们声明的连接点上下文变量中。 www.ibm.com 1. There are two ways to approach configuring tests at a join point. 在一个连接点上配置测试有两种方法。 www.ibm.com 2. To proceed with the original join point. 以完成原来的连接点。 www-128.ibm.com 3. The main concept is the join point. 主要概念就是连接点。 www.ibm.com 4. Needs to access information based on the monitored join point. 需要根据被监视的连接点访问信息。 www-128.ibm.com 5. This advice would only run if some context were IConfigurable, but when it runs, it can run the underlying join point many times. 该通知只能用于某些上下文是IConfigurable的情况,但是如果能运行,那么可以运行底层连接点多次。 www.ibm.com 6. Base code is refactored to create a better join point model. 可以重构库代码创建更好的连接点模型。 www.ibm.com 7. It is as general as a join point, safer than advice (because the context is more hidden), and as reusable as Command. 它和连接点一样通用,比通知更安全(因为上下文更加隐蔽),并且和Command一样可以重用。 www.ibm.com 8. Another problem is that the crosscutting views only show matches based on static join point shadows. 另一个问题是横切视图只显示了基于静态联结点shadow的匹配。 www.ibm.com 9. Simple join point model is well suited to coarse-grained aspects and easier to learn. 简单的连接点模型很适于粗粒度的方面,更容易学习。 www-128.ibm.com 10. Matches any join point where the object currently bound to 在匹配的连接点中,对象目前绑定到有指定注释的 www-128.ibm.com |
||||||||||||
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。