数据字典的好处很多比如: 1、可以减少使用表,来专门记录类型。
2、类型使用key检索,或者报表统计分析,在一定程度上相比汉字来讲,效率好得多。 3、使用缓存的数据字典、也可以减少不少的io操作。
等等、、、、首先,库表设计就智者见智了、不多说、爱怎么设计就怎么设计。完整的数据字典设计 ,需...
分类:
其他好文 时间:
2014-04-28 18:44:38
阅读次数:
2179
查询并获得了cursor对象后,用while(corsor.moveToNext()){}遍历,当corsor.moveToNext()方法调用,如果发现没有对象,会返回false
public List getAll() { List list = new ArrayList(...
分类:
移动开发 时间:
2014-04-28 10:07:40
阅读次数:
1390
代码:import java.awt.Graphics;import
javax.swing.ImageIcon;import javax.swing.JPanel;public class Picture extends
JPanel { private static final long ...
分类:
其他好文 时间:
2014-04-28 09:55:53
阅读次数:
903
//
监听listview滚到最底部mIndexList.setOnScrollListener(new OnScrollListener() { @Override
public void onScrollStateChanged(AbsListView view, int scrol...
分类:
移动开发 时间:
2014-04-28 09:38:05
阅读次数:
2001
1 #include 2 #include 3 using namespace std; 4
class people 5 { 6 public: 7 string name; 8 int age; 9 virtual void print();10
};11 12...
分类:
其他好文 时间:
2014-04-28 09:04:54
阅读次数:
690
foreach语句是php用来遍历数组的一种方法,主要有两种格式:第一种:foreach
(array_name as $value)例1:$value){ echo "Value: " . $value .
"";}?>运行结果:第二种:foreach (array_name as $key =....
分类:
Web程序 时间:
2014-04-28 07:26:43
阅读次数:
642
【二分查找】
针对有序数组,性能非常好。
【时间复杂度】
logn
【代码】
#include
#include
//非递归实现二分查找
int BinarySearch1(int a[], int n, int key)
{
int left, right;
int mid;
left = 0;
right = n - 1;
while(left <= right)
...
分类:
其他好文 时间:
2014-04-27 19:42:22
阅读次数:
538
Logging.c:
/*
Copyright (c) 2008-2012 Red Hat, Inc.
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any...
分类:
其他好文 时间:
2014-04-27 18:57:31
阅读次数:
702
在public继承中,(public 继承表示的关系是 “is a ” 的关系),其类中定义的函数主要有三类:pure virtual函数,impure virtual函数以及non-virtual函数,这三种函数决定了public继承中的两个重要概念 : “ 函数接口继承” 以及 “函数实现继承”。那么接下来将针对这样一个不简单的问题做一些简介。
考虑如下的类定义:
class Shape...
分类:
其他好文 时间:
2014-04-27 18:29:13
阅读次数:
526
/**
*
* @param partsPaths 要合成的音频路径数组
* @param unitedFilePath 输入合并结果数组
*/
public void uniteWavFile(String[] partsPaths, String unitedFilePath) {
byte byte1[] = getByte(partsPaths[0]);
...
分类:
编程语言 时间:
2014-04-27 17:39:03
阅读次数:
556