mysql> SELECT desc,status,play_time,push_type, 'interval' FROM cms_push;ERROR 2006 (HY000): MySQL server has gone awayNo connection. Trying to reconne...
分类:
数据库 时间:
2014-07-25 13:52:11
阅读次数:
333
打开eclipse将鼠标放在代码上等待代码提示的时候,直接闪退 错误如下: # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f25d0b922a1, pid=3459, tid=139...
分类:
系统相关 时间:
2014-07-25 11:41:41
阅读次数:
966
之前写了Spring的实现原理,今天我们接着聊聊Hibernate的实现原理,package com.tgb.hibernate;
import java.lang.reflect.Method;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import...
分类:
系统相关 时间:
2014-07-25 11:14:55
阅读次数:
343
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
思路:笨办法是每个节点再开辟一个属性存放是否访问过,这样遍历一遍即可知道是否有环。但为了不增加额外的空间,可以设置两个指针,一个一次走一步,另一个一次走两步...
分类:
编程语言 时间:
2014-07-25 11:09:21
阅读次数:
206
A Coremicro Reconfigurable Embedded Smart Sensor Node has the capability of hosting intelligent algorithms to support health monitoring applications a...
分类:
其他好文 时间:
2014-07-25 02:43:04
阅读次数:
330
Merge Sorted ArrayGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that i...
分类:
其他好文 时间:
2014-07-25 02:34:44
阅读次数:
162
iOS app包显示名称可以国际化,具体方法如下:编辑Info.plist,添加一个新的属性:Application has localized display name,设置该属性的类型为boolean,并设置value为YES;在PROJECT的info标签中,在Localization...
分类:
移动开发 时间:
2014-07-25 02:33:44
阅读次数:
1699
自从做了多校,整个人都不好了,老是被高中生就算了,题老是都不懂=-=原谅我是个菜鸟,原谅我智力不行。唯一的水题。
Problem Description
Though ZCC has many Fans, ZCC himself is a crazy Fan of a coder, called "Memset137".
It was on Codefires(CF),...
分类:
其他好文 时间:
2014-07-24 23:30:23
阅读次数:
313
正常通信的情况下,send函数发送成功会返回发送数据的字节数。当有错误发生时,send返回-1,全局变量errno被设置。很多情况下,send返回-1是由于连接被对端关闭(对端发送了RST或者FIN包),这种情况errno会被设置为ECONNRESET(Connection reset by pee...
分类:
其他好文 时间:
2014-07-24 22:54:43
阅读次数:
1722
1.我们都知道JDBC的固定步骤是以下几步组成::(1)Class.forName();(2)Connection con = DriverManager.getConnection();(3)PreparedStatement stat = con.prepareStatement(sql);(4...
分类:
其他好文 时间:
2014-07-24 22:46:53
阅读次数:
241