Begin to record my bologs....

 after work for almost two years, I have realize the truth notes can help a lot for us.

avoiding my lazy life, I decide to sign something important up here. after years I suppose it must be helpful....

时间: 2024-12-18 00:32:53

Begin to record my bologs....的相关文章

LoadRuner12.53教程(三)

教训1:建立一个Vuser Script jiào教   xùn训   1   :   jiàn建   lì立   yī一   gè个   V   u   s   e   r   S   c   r   i   p   t To generate a load on your system, you first build a Vuser script that you can run to emulate real user behavior. You use VuGen to create

Codeforces 475 D.CGCDSSQ

题目说了a的范围小于10^9次方,可实际却有超过的数据...真是醉了 算出以f[i]结尾的所有可能GCD值,并统计: f[i]可以由f[i-1]得出. /* 递推算出所有GCD值,map统计 */ #include <iostream> #include <vector> #include <map> using namespace std; #define ll long long const int MAXN = 100009; int n, m; ll x; ma

[转]oracle存储过程、声明变量、for循环

oracle存储过程.声明变量.for循环 1.创建存储过程 create or replace procedure test(var_name_1 in type,var_name_2 out type) as --声明变量(变量名 变量类型) begin --存储过程的执行体 end test; 打印出输入的时间信息 E.g: create or replace procedure test(workDate in Date) is begin dbms_output.putline(&ap

Oracle存储过程基本语法介绍

Oracle存储过程基本语法 存储过程 1 CREATE OR REPLACE PROCEDURE 存储过程名 2 IS 3 BEGIN 4 NULL; 5 END; 行1: CREATE OR REPLACE PROCEDURE 是一个SQL语句通知Oracle数据库去创建一个叫做skeleton存储过程, 如果存在就覆盖它; 行2: IS关键词表明后面将跟随一个PL/SQL体. 行3: BEGIN关键词表明PL/SQL体的开始. 行4: NULL PL/SQL语句表明什么事都不做,这句不能删

Golang defer

defer 作用: 作为函数的进入与退出的log日志:// Test project main.go 代码如下 package main import ( "fmt" ) func begin(funName string) string { fmt.Println("Enter Function") return funName } func end(funName string) string { fmt.Println("Leave Function

Software Testing(软件测试 实验二)Lab2 Seleium

Selenium Experiment 1. Install the SeleiumIDE plugin (1)   Download firefox40.0.2 from https://ftp.mozilla.org/pub/firefox/releases/40.0.2/win32/zh-CN/ Add install the firefox browser following the instruction. (2)   Add Seleium plugin Search for "Se

Oracle存储过程基本语法 存储过程

Oracle存储过程基本语法 存储过程 1 CREATE OR REPLACE PROCEDURE 存储过程名 2 IS 3 BEGIN 4 NULL; 5 END; 行1: CREATE OR REPLACE PROCEDURE 是一个SQL语句通知Oracle数据库去创建一个叫做skeleton存储过程, 如果存在就覆盖它; 行2: IS关键词表明后面将跟随一个PL/SQL体. 行3: BEGIN关键词表明PL/SQL体的开始. 行4: NULL PL/SQL语句表明什么事都不做,这句不能删

华为机试题目

1.求区间最高分 int getMax(int *pScore, int low, int high) { if(low > high) { high = low ^ high; low = low ^ high; high = low ^ high; } int maxScore = pScore[low]; for(int i = low + 1; i <= high; ++i) { if(maxScore < pScore[i]) { maxScore = pScore[i]; }

【leetcode】LRU Cache(hard)★

Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set. get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1.set(