dbca建库后sqlplus提示如下$ sqlplus / as sysdbasqlplus: error while loading shared libraries: /u01/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1: c...
分类:
数据库 时间:
2014-08-17 23:59:02
阅读次数:
763
此为有时页面加载很慢时体验效果很不好而写的加载动画CSS样式:#loading{position:fixed;_position:absolute;top:50%;left:50%;width:124px;height:124px;overflow:hidden;background:url(wai...
分类:
Web程序 时间:
2014-08-17 12:57:32
阅读次数:
162
1. 打开动态链接库: #include void *dlopen(const char *filename, int flag); 该函数返回操作句柄,如: void *pHandle = dlopen(strSoFilePath, RTLD_LAZY);2. 取动态对象地址: #include....
分类:
其他好文 时间:
2014-08-16 19:42:30
阅读次数:
155
//GameScene.h
#include?"cocos2d.h"
USING_NS_CC;
class?GameScene?:?public?cocos2d::Layer
{
public:
????static?Scene*?createScene();
????
????virtual?bool?init();
????
??...
分类:
其他好文 时间:
2014-08-15 18:09:19
阅读次数:
171
HTML代码:CSS代码:@-webkit-keyframes spin { from { -webkit-transform: rotate(360deg); transform: rotate(360deg); } to { -webkit-transform: rota...
分类:
Web程序 时间:
2014-08-15 17:32:19
阅读次数:
253
FEKO6.0各版本下载地址(来源于寺院的研究僧):Intel/AMD(32-bitx86)Windows(XP,Vista,Windows7,Server2003)feko_distrib_6.0_win32.exe(320MByte)Linuxfeko_distrib_6.0_LINUX.tar.gz(392MByte)Intel/AMD(64-bitx86_64)Windows(XP,Vista,Windows7,Server2003,Server2008,Serv..
分类:
系统相关 时间:
2014-08-15 14:50:59
阅读次数:
877
POJ 3282 Ferry Loading IV(模拟)...
分类:
其他好文 时间:
2014-08-15 10:44:08
阅读次数:
144
在系统中,如果在进行耗时的操作,一般都会通知UI告之用户操作正在进行。一般情况下可以设置Cursor来设置鼠标指标的图形来通知UI,但是这样看起来不会特别明显,所以显示一个比较明显的Loading Bar加载条是普遍的选择。 耗时操作分为很多种,根据是否能得到完成的百分比分为"不可预知时间操作"(....
分类:
其他好文 时间:
2014-08-15 01:17:46
阅读次数:
180
题意 汽车通过渡船过河 渡船开始在左边 输入按车辆来的顺序输入河两岸的车 渡船每次运输的汽车的总长度不能超过渡船自己本身的长度 先来的车先走 求轮船至少跨河多少次才能将所有的车辆都运完
简单模拟 建两个队列 分别装左边的车 和右边的车 算出两边各至少需要运输多少次就行了
#include
#include
#include
using namespace std;...
分类:
其他好文 时间:
2014-08-15 00:04:16
阅读次数:
277
Description
Before bridges were common, ferries were used to transport cars across rivers. River ferries, unlike their larger cousins, run on a guide line and are powered by the river's current. Ca...
分类:
其他好文 时间:
2014-08-14 20:34:49
阅读次数:
349