Annotation 被称为注解,在Java开发中是相当常见的,通过注解,我们可以简化代码提高开发效率.例如Override Annotation,这个应该算是在开发过程中使用最多的注解了.下面这个例子是Android Activity的onCreate方法最常用的注解: @Override public void onCreate(Bundle savedInstanceState); 1.Annotation 概念 An annotation is a form of metadata, t
1 Annotation 1.1 Annotation 概念及作用 1. 概念 An annotation is a form of metadata, that can be added to Java source code. Classes, methods, variables, parameters and packages may be annotated. Annotations have no direct effect on the operation of the
一.Annotation 示例 Override Annotation @Override public void onCreate(Bundle savedInstanceState); 二.Annotation 概念及作用 1 概念 An annotation is a form of metadata, that can be added to Java source code. Classes, methods, variables, parameters and packages ma
一.Web Service基本概念 WebService是一种跨编程语言和跨操作系统平台的远程调用技术.Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求,轻量级的独立的通讯技术.是:通过SOAP在Web上提供的软件服务,使用WSDL文件进行说明,并通过UDDI进行注册. XML+XSD,SOAP和WSDL就是构成WebService平台的三大技术. 1.XML+XSD XML:(Exte