0:000> bp 0012f2fc "j @ecx == 0 '';'gc'"0:000> g j代表judgement,与c++中的condition?A:B类似。如果断点处ecx是0,则停下;否则go until next breakpoint(gc).
分类:
数据库 时间:
2014-07-16 22:51:13
阅读次数:
218
sudo apt-get install golanggccgo安装gcc -v 查看--enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin 如果有一个go,说明你的gcc支持golang,那么就执行...
分类:
其他好文 时间:
2014-07-16 21:33:13
阅读次数:
268
shell bash 是linux系统最常用的脚本,在其里面可以写上grep sed awk等常用命令用到grep那么就要想到正则开头是小写字母的那一行就列出grep -n '^[a-z]'oo前不能是小写字母grep -n '[^a-z]oo'不想要开头是英文字母grep -n '^[^a-zA-...
分类:
其他好文 时间:
2014-07-16 20:23:02
阅读次数:
163
The slice operator can take a third argument that determines the step size, so t[::2] creates a list that contains every other element from t. If the ...
分类:
其他好文 时间:
2014-07-15 09:12:42
阅读次数:
328
USE [BBDAS_FP_DATA]GO/****** Object: StoredProcedure [dbo].[Recover_Deleted_Data_Proc] Script Date: 07/12/2014 15:09:44 ******/SET ANSI_NULLS ONGO...
分类:
数据库 时间:
2014-07-14 09:09:17
阅读次数:
369
The + operator concatenates lists: Similarly, the * operator repeats a list a given number of items:List slicesThe slice operator also works...
分类:
其他好文 时间:
2014-07-13 19:42:02
阅读次数:
208
create database data_Test --创建数据库data_Test GO use data_Test GO create table tb_TestTable --创建表 ( id int identity(1,1) primary key, userName nvarchar(2...
分类:
其他好文 时间:
2014-07-13 19:11:16
阅读次数:
292
go:
控制批处理中的命令执行流程
命令格式:
go label
lable--行号
demo
bat
@echo off
echo 跳过中间,执行最后
goto last
type a.txt
:last
dir .
pause
a.txt
aaaaa
结果:...
网络数据包的发送分为三种方式,分别是单播、组播、广播。
广播通俗地讲,就是让你的机器发送的数据包可以被同一个网络内的所有主机都接收到。
在讲解如何发送广播包之前,先来看看跟广播有关的知识:
我们都知道IP地址的作用是用来在网络中定位某个网络接口的(没错,准确的讲,IP并不是定位某一台主机)。我们通常见到的IP地址的形式都是如下这样子的:...
分类:
其他好文 时间:
2014-07-13 15:51:40
阅读次数:
174