加载中
一个简单的Java Lambda表达式demo

public class Solution { public static void process(Runnable r){ r.run(); } public static void main(String[] args) { // 使用lambda表达式 Runnable r1 = () -> System.out.println("...

2021/04/05 16:00
168
TCP/IP网络编程

套接字协议 协议族:PF_INET(IPv4互联网协议族)、PF_INET6(IPv6互联网协议族) 套接字类型:SOCK_STREAM(面向连接的套接字)、SOCK_DGRAM(面向消息的套接字) 可靠的、按序传递的、基于字节...

jieba分词的简单上手教程

简介 jiaba分词是目前最好的Python中文分词组件。支持3种分词模式:精确模式、全模式、搜索引擎模式。 jieba的安装 在Pycharm中,File -> Setting -> Project interpreter -> Add。搜索jieba...

PyCharm安装Flask并创建helloword

PyCharm安装Flask并创建helloword 环境要求 windows python3.8 PyCharm 安装Flask Pycharm中, 新建项目 -> 创建一个名为helloflask的工程,PyCharm默认会自动配置虚拟化环境Virtualenv 创建...

小技巧

windows2008 自动关机: taskkill /f /im wlms.exe ping -n 4 127.0.0.1 shutdown -a

C# 计算MD5值

这里输入代码 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Ta...

一个C#简单事件代理

C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Timers; namespace CSharp1 { public deleg...

2016/12/10 22:12
87
C#的多线程及log日志

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Reflection; using System.Threading.Tasks; namespace C...

crontab的使用

crontab命令常见于Unix和类Unix的操作系统之中,用于设置周期性地执行的指令。该命令从标准输入设备读取指令,并将其存放于“crontab”文件中,以供之后读取和执行。 通常,crontab存储的指令...

java序列化

import java.io.*; public class Cat implements Serializable {   private static final long serialVersionUID = 1L;   private String name;     public Cat () {  ...

2014/09/29 21:06
150
C++11新特性-使用别名(alias)

传统 传统使用别名的方法是用typedef关键字。如: typedef double wages; typedef wages base, *p; C++11引入了一种新的使用别名的方式,叫作:别名声明(alias declaration)。 using ...

C语言中的#undef

#undef 是在后面取消以前定义的宏定义    该指令的形式为    #undef 标识符    其中,标识符是一个宏名称。如果标识符当前没有被定义成一个宏名称,那么就会忽略该指令。    一旦定义...

2014/06/13 12:21
221
《C专家编程》笔记(三)---相邻的字符串自动合并

#include <stdio.h> #include <stdlib.h> int main() {     int MB=0;     while(malloc(1<<20))         ++MB;     printf("Allocated %d MB "      "to...

2014/06/13 12:21
69
字符串和字符数组

void test1() {   char string[10];   char *str1="0123456789";   strcpy(string, str1); } //函数test1中,指针str1所指向的字符串有11个元素。一定要注意字符串是以'\0'为结尾的,而str...

C语言实现栈的操作

#include <stdio.h> #include <stdlib.h> void push(int); int pop(); int *pi = NULL;//top指针 int *tos = NULL;//head指针 int main() {     int v;     //申请50个...

2014/06/13 12:20
47
C语言计算字符串的长度strlen

#include <stdio.h> #include <stdlib.h> size_t strlen(char *string) {     int length=0;     while(*string++ != '\0')         length+=1;     return l...

2014/06/13 12:19
201
《C专家编程》笔记(一)

#include <stdio.h> #include <stdlib.h> #include <time.h> int main() {     time_t biggest=0x7FFFFFFF;     printf("biggest = %s\n",ctime(&biggest));//ctime函数把参...

2014/06/13 12:18
31
C语言malloc用法

#include <stdio.h> #include <stdlib.h> int main() {     int *pi;     pi=malloc(100);     if(pi==NULL){         printf("Error! Out of memory!\n");   ...

《C和指针》第12章 使用结构和指针

这一章详细讲了单链表,考虑的很全面,我感觉很有用,特此记录下来。 单链表的头文件(sll_node.h): typedef struct NODE {     struct NODE *link;     int         ...

C语言中的结构体

#include <stdio.h> #include <stdlib.h> struct SIMPLE{     int a;     int b;     int c; }; int main() {     struct SIMPLE x;     x.a=4;     x...

2014/06/13 12:17
92

没有更多内容

加载失败,请刷新页面

返回顶部
顶部