-----------------前提条件-------------
一、 mysql 安装略
二、mysql 版本
[root@mysql ~]#mysql --version
mysql Ver 14.14 Distrib 5.7.26, for linux-glibc2.12 (x86_64) using EditLine wrapper
...
This function is called by the system as the initial entry point for Windows CE-based applications.
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPWSTR lpCmdLine,
int n...
[root@wx03 conf]# cat zoo.cfg
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial
# synchronization phase can take
initLimit=10
# The number of ticks th...
[root@wx03 conf]# cat zoo.cfg
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial
# synchronization phase ca...
public class C {
public static int i=20; //static 也是必须的
private static C cc=new C();//类里面可以产生类对象 静态是必须的,因为下面getC 静态的方法不能访问非静态的
private C()//这里为private就...