本文章是建立在已经安装MySQL数据库的前提,默认安装在C:\Program Files (x86)\MySQL,建议在安装时选中Connector.NET 6.9的安装,里面有MySQL与C#连接的动态链接库。 帮助文档C:\Program Files (x86)\MySQL\Connector. ...
分类:
数据库 时间:
2020-06-10 10:53:19
阅读次数:
75
01.代码如下: *& * *& Report Z_TIANPAN_001 *& *& * *& *& *& * REPORT Z_TIANPAN_001. DATA: A type i value 1. DATA: b type i value 88. DATA: c type i . *在宏中可 ...
分类:
其他好文 时间:
2020-06-09 23:50:28
阅读次数:
69
title: mcu-stm32-IAP-0-about date: 2020-05-27 08:51:58 categories: tags: - iap - stm32 - about 章节概述: 介绍什么是IAP、IAP的前置知识。 IAP IAP(In Application Program ...
分类:
其他好文 时间:
2020-06-09 23:44:34
阅读次数:
63
What happened? MGM movie and song producer. Similar peer to peer program as Napster, illegal distribution of copyrighted movies and songs. Grokster tr ...
分类:
其他好文 时间:
2020-06-09 23:22:41
阅读次数:
104
举例来说明锁的可重入性 public class UnReentrant{ Lock lock = new Lock(); public void outer(){ lock.lock(); inner(); lock.unlock(); } public void inner(){ lock.lo ...
分类:
其他好文 时间:
2020-06-08 23:59:53
阅读次数:
143
1 using System; 2 3 namespace ConsoleApp1 4 { 5 class Program 6 { 7 static int[] InsertArray(int[] bornArray) 8 { 9 for (int i = 0; i < bornArray.Leng ...
分类:
编程语言 时间:
2020-06-08 20:45:52
阅读次数:
59
1.滑动解锁 例1:https://www.helloweba.net/demo/2017/unlock/中的滑动解锁 代码如下: slide-to-unlock-handle:表示滑块 slide-to-unlock-progress:滑过后的背景色 from time import sleep ...
分类:
其他好文 时间:
2020-06-08 19:01:48
阅读次数:
80
在linux中内置了很多的性能监控命令,top是其中一个较为全面的工具。先看一下man手册 The top program provides a dynamic real-time view of a running system. It can display system summary inf ...
分类:
系统相关 时间:
2020-06-08 17:25:01
阅读次数:
101
第一种方式: import java.util.concurrent.CountDownLatch; public class ConcurrentTest { private static CountDownLatch latch= new CountDownLatch(1); public st ...
分类:
编程语言 时间:
2020-06-08 12:44:57
阅读次数:
71
一 线程Thread的使用 (1)不通过委托,直接在线程里实现方法体 namespace ConsoleApplication1{ class Program { static void Main(string[] args) { bool a =false; bool b = false; boo ...
分类:
编程语言 时间:
2020-06-08 10:51:12
阅读次数:
69