Go编程基础
Go的内置关键字(25个)
不多
break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continute for import return var
Go的注释方...
分类:
其他好文 时间:
2014-08-06 01:56:50
阅读次数:
313
一,建立工程FATFS源码1,在http://elm-chan.org/fsw/ff/00index_e.html上下载ff007c.zip,并把ff007c.zip里面的src文件夹复制到D:\works\EK-STM3210E-UCOSII下,并改名为Fatfs;2,在IDE工程中右击选择“Ad...
分类:
其他好文 时间:
2014-07-27 10:26:32
阅读次数:
476
Problem Description
There are two strings A and B with equal length. Both strings are made up of lower case letters. Now you have a powerful string painter. With the help of the painter, you can chan...
分类:
其他好文 时间:
2014-07-20 15:41:50
阅读次数:
213
package mainimport ( "fmt" "time")func deskGoRoutine(index int, userChannel chan string, deskChannel chan string) { for { fmt.Println(...
分类:
其他好文 时间:
2014-07-16 19:32:52
阅读次数:
203
Git配置1. 用户信息你个人的用户名称和电子邮件地址,用户名可随意修改,git 用于记录是谁提交了更新,以及更新人的联系方式。$ git config --global user.name "Donly Chan"$ git config --global user.email donly@exa...
分类:
其他好文 时间:
2014-07-01 21:18:41
阅读次数:
287
Volume managers Some Unix systems have snapshot-capable logical volume managers. These implement copy-on-write on entire block devices by copying chan...
分类:
其他好文 时间:
2014-06-30 14:53:23
阅读次数:
271
1 var optionalName : String? = "Skiy Chan"String? = "Skiy Chan" 中的问号是什么意思?目前还在看api和视频教程,暂时还没弄懂这个意思。特别是api中的那串代码:var optionalString : String? = "Hello"...
分类:
其他好文 时间:
2014-06-25 22:45:27
阅读次数:
244
这里给出一个服务端和客户端,服务端可以接收多个连接,并且利用Go的杀手特性go和channel来替代select进行数据的接受。
服务端:
package main
import (
"fmt"
. "syscall"
)
func RecvRoutine(sockfd int, session chan string) {
var buffer []byte = make(...
分类:
系统相关 时间:
2014-06-24 17:53:37
阅读次数:
399
channel 不仅能够控制数据传输,还可以控制执行流。1.
关闭的channel从来都不会阻塞关闭的channel不能传数据但是可以接受数据,例子```package mainimport "fmt"func
main() { ch := make(chan bool, 2) ...
分类:
其他好文 时间:
2014-05-30 00:08:36
阅读次数:
250
这里不讲vsftpd的基本配置,网上教程已经太多了。这里只说seLinux的问题。日前在CentOS6.5中安装了vsftpd,按照网上搜索的教程,配置好/etc/vsftpd/vsftpd.conf,重新启动后,登录实验,又出现了著名的不能设置主目录错误:500
OOPS: cannot chan...
分类:
系统相关 时间:
2014-05-26 06:40:58
阅读次数:
468