首先,这个不是错误,是warning。 方法1:服务器配置修改
(Apache服务器中的php.ini配置文件) 修改php.ini配置文件,error_reporting = E_ALL &
~E_NOTICE方法2:对变量进行初始化,规范书写(比较烦琐,因为有大量的变量)。方法3:每个文件头.....
分类:
其他好文 时间:
2014-05-26 01:47:12
阅读次数:
333
以前写的代码//// main.c// cTest//// Created by Zizhu on
13-10-8.// Copyright (c) 2013年 Zizhu. All rights reserved.//#include #define N
(10)void quickSor...
分类:
编程语言 时间:
2014-05-26 01:27:07
阅读次数:
340
##报错来源分析 由于hibernate-entitymanager 需要jboss logging
。由于或多或少的原因导致 maven无法下载相关的jar文件。##解决办法: 访问 http://search.maven.org
搜索jboss-logging 点击all, 找到相...
分类:
其他好文 时间:
2014-05-25 23:23:26
阅读次数:
401
继续并发专题~
这次介绍CyclicBarrier:看一眼API的注释:
/**
* A synchronization aid that allows a set of threads to all wait for
* each other to reach a common barrier point. CyclicBarriers are
* useful in program...
分类:
编程语言 时间:
2014-05-25 18:15:06
阅读次数:
316
Kitahara Haruki has bought n apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends.
Each apple weights 100 grams or 200 grams. Of course Kitahara Haru...
分类:
其他好文 时间:
2014-05-25 09:01:36
阅读次数:
174
单链表及其ADT
void deleteList(); //删除整个链表
List makeEmpty(List l);//清空链表,只留头结点
int isEmpty(List l);//判断是否为空
int isLast(List l, Position p);//判断是否是最后一个结点
List createList();//创建一个链表
void insert(List l,...
分类:
其他好文 时间:
2014-05-25 07:18:35
阅读次数:
222
题目:
Given an array S of n integers, are there elements a, b, c in S such that a + b + c =
0? Find all unique
triplets in the array which gives the sum of zero.
Note:
Elements...
分类:
其他好文 时间:
2014-05-25 00:39:37
阅读次数:
343
vertica从本地其他表迁移数据到新表(insert into 语句用法实例)...
分类:
其他好文 时间:
2014-05-24 23:26:23
阅读次数:
1199
例2:创建DML语句行级触发器。当对emp表执行INSERT,UPDATE,DELETE操作时,它自动更新dept_summary表中的数据。由于在PL/SQL块中不能直接调用DDL语句,所以,利用ORACLE内置包DBMS_UTILITY中的EXEC_DDL_STATEMENT过程,由它执行DDL语句创建触发器。BEGINDBMS_OUTPUT.PUT_LINE(‘..
分类:
数据库 时间:
2014-05-24 15:23:16
阅读次数:
388
Palindrome Partitioning
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "...
分类:
其他好文 时间:
2014-05-24 14:29:45
阅读次数:
222