java 注解,从名字上看是注释,解释。但功能却不仅仅是注释那么简单。注解(Annotation) 为我们在代码中添加信息提供了一种形式化的方法,是我们可以在稍后 某个时刻方便地使用这些数据(通过 解析注解 来使用这些数据),常见的作用有以下几种: 生成文档。这是最常见的,也是java 最早提供的注 ...
分类:
编程语言 时间:
2016-10-21 15:43:47
阅读次数:
223
Variable hoisting Another unusual thing about variables in JavaScript is that you can refer to a variable declared later, without getting an exception ...
分类:
其他好文 时间:
2016-09-18 13:15:12
阅读次数:
151
转载自: http://onlineappsdba.com/index.php/2014/02/18/wlst-connecting-to-weblogic-admin-server-failed-bootstrap-to-ipport-failed-it-is-likely-that-the-re ...
分类:
Web程序 时间:
2016-09-17 01:59:21
阅读次数:
1304
// x has not been declared before if (typeof x 'undefined') { // evaluates to true without errors // these statements execute } //如果未定义变量,那么会出现引用错误 if ...
分类:
Web程序 时间:
2016-09-14 12:41:49
阅读次数:
160
近期部署项目数据库,编译包时遇到错误: PACKAGE CTG.CTG_CSB_COMMON 编译错误 错误:PLS-00201: identifier 'XMLDOM' must be declared 行:124 文本:function getValueByXpath(inNode In xml ...
分类:
数据库 时间:
2016-09-05 20:45:11
阅读次数:
410
malloc与new的区别 从本质上来说,malloc是libc里面实现的一个函数,如果在source code中没有直接或者间接include过stdlib.h,那么gcc就会报出error:‘malloc’ was not declared in this scope。如果生成了目标文件(假定动 ...
分类:
其他好文 时间:
2016-08-11 20:57:15
阅读次数:
178
访问修饰符的可见域 ? private—The member is accessible only from the top-level class where it is declared.? package-private—The member is accessible from any cl ...
分类:
数据库 时间:
2016-07-12 15:18:16
阅读次数:
168
一年前的部分学习笔记,现在整理并复习它们。八 域和生命期名字空间域是不包含在函数声明,函数定义或者类定义内的程序文本部分。
程序员也可以利用名字空间定义namespace definition 来定义用户声明的user-declared 的名字空间。它们被嵌套在全局域内。局部域内的名字解析是这样进行的:
首先查找使用该名字的域, 如果找到一个声明则该名字被解析. 如果没有找到则查找包含该域的域,...
分类:
编程语言 时间:
2016-07-10 19:04:54
阅读次数:
206
生成 java 代码时的警告: The default outer class name, "Auth", conflicts with a type declared in the proto file and an alternative outer class name is used: "A ...
分类:
编程语言 时间:
2016-07-07 00:52:08
阅读次数:
470
$ proc sample9.pc SQLCHECK=SEMANTICS Pro*C/C++: Release 11.2.0.1.0 - Production on Tue Jan 8 15:18:40 2013 Copyright (c) 1982, 2009, Oracle and/or its ...
分类:
其他好文 时间:
2016-06-15 15:40:17
阅读次数:
188