- 浏览: 153328 次
- 性别:
- 来自: 深圳
最新评论
-
lyaqys:
lz实现的OptimisticExclusiveLock有点问 ...
java park/unpark 【java并发】基于JUC CAS原理,自己实现简单独占锁
文章列表
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
printf(); 最后要加\n 否则有可能看不见输出的对象
typedef struct{
int id;
char name[100];
char tel[100];
} student;
typedef struct Node {
student * student;
struct Node * next ; // 要这样,否则在后期转化有问题 node *tmp = (*nodes)- > ...
pip 安装:
yum install python-setuptools
easy_install pip
beautifulsoup4 安装:
pip install beautifulsoup4
int j = 0;
j = j++;
//由于是虚拟机的问题, j 初始为0, 先给j 赋值为0, 然后 j的新的地址已经改变了,然后再给老的j+1; 但是新的j的值依然为0
System.out.println(j);//0
System.out.println(j);//0
int i = j;
System.out.println(i);//0
#include<stdio.h>
#include <unistd.h>
#include<fcntl.h>
#include<netdb.h>
#include<stdlib.h>
#include "httpclient.h"
#include<string.h>
#include<sys/types.h>
#include<sys/socket.h>
#include <netinet/in.h>
const char * http_s = "htt ...
gcc bug :
##’ cannot appear at either end of a macro expansion”
‘##’不能出现在宏展开的两端”
10.c: 在函数‘main’中:
10.c:14:1: 错误:毗连“"aa"”和“"bb"”不能给出一个有效的预处理标识符
1 #include<stdio.h>
2
3 #define MAX(a,b) ((a>b) ? a:b)
4
5 #define JOIN(a,b) a##b
6
7 int main()
8 {
9 ...
负数转化为整数
int a = -1321313;
12
13 printf("1a: %d\n",a);
14 if (a < 0){
15
16 a = -a;
17 }
18
19
20 printf("2a: %d\n",a);
整数 转化为字符
b= a%10;
27
28 buff[i++] = b+'0';
package main
import (
"fmt"
"strings"
//"unicode/utf8"
)
func main() {
fmt.Println("查找子串是否在指定的字符串中")
fmt.Println(" Contains 函数的用法")
fmt.Println(strings.Contains("seafood", "foo")) //true
fmt.Println( ...
if(NULL == fgets(msg,100,stdin)){
18
19 // msg 末尾有换行副(\n\0)
1.STDIN_FILENO的作用
STDIN_FILENO属于系统API接口库,其声明为 int 型,是一个打开文件句柄,对应的函数主要包括 open/read/write/close 等系统级调用。
操作系统一级提供的文件API都是以文件描述符来表示文件。STDIN_FILENO就是标准输入设备(一般是键盘)的文件描述符。
2.区别
1)数据类型不一致:
stdin类型为 FILE*
STDIN_FILENO类型为 int
使用st ...
nice,renice 指定进程运行的优先级
taskset 进程 在制定的cpu 上运行
java 类加载器的种类:
bootstrap classloader 跟类加载器
|
extension classloader 扩展类加载器
|
system classloader 系统类加载器
user classloader 用户自定义类加载器
bootstrap classloader -引导(也称为原始)类加载器,它负责加载Java的核心类。 在Sun的JVM中,在执行java的命令中使用-Xbootclasspath选项或使用 - D选项指定sun.boo ...
先看一段代码:
[cpp] view plaincopy
#include<iostream>
using namespace std;
void GetMe(char *p,int num)
{
p=(char*)malloc(sizeof(char)*num);
}
int main()
{
char *str=NULL;
GetMe(str,100);
strcpy(str,"Hel ...
原文: http://www.ibm.com/developerworks/cn/linux/l-cn-pexpect2/
技术主题软件下载社区技术讲座
developerWorks 中国Linux文档库
探索 Pexpect,第 2 部分:Pexpect 的实例分析
丁 钦浩 (dingqinh@cn.ibm.com), 软件开发工程师, IBM
王 栋柯 (wangdk@cn.ibm.com), 软件开发工程师, IBM
王 乾 (wqwqain@cn.ibm.com), 软件工程师, IBM
简介: Pexpect 是一个用来启动子程序并对其进行自动控制的纯 Python 模块。 ...
rsync -v air@192.168.1.103:/home/air/ss.c /home/air/go
package main
import (
"io"
"io/ioutil"
"log"
"os"
"net/http"
)
const (
UPLOAD_DIR = "uploads"
)
func uploadHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
io.WriteString(w, "<html><form me ...