03 2015 档案
摘要:在看sudoku的时候发现的:
http://www.erlang.org/doc/man/gb_sets.html
阅读全文
摘要:最初看得sudoku的分析:
http://blog.csdn.net/lawme/article/details/4160934 erlang timer 文档
http://www.erlang.org/doc/man/timer.html erlang gb_sets
http://...
阅读全文
摘要:Eshell V6.1 (abort with ^G)1> Filename = "./test.data"."./test.data"2> Tab = ets:new(testets, [named_table, orderd_set]).** exception error: bad argu...
阅读全文
摘要:### 说明:效果是一个wxNotebook 的第一个Tab 里面分割为左边和右边,左边分为上下两个部分,三个部分大小可以拖动改变,并且捕获到窗口大小变化的事件!-module(sashWindow3plus).-behaviour(wx_object).%% Client API-export([...
阅读全文
摘要:一:array:可以和list , orddict相互转化, 它的好处是像数组一样可以按照顺序获取第几个值二:proplistsDESCRIPTIONProperty lists are ordinary lists containing entries in the form of either ...
阅读全文
摘要:主要参考这个网站就好了,但是目前这个网站似乎打开不太方便了 http://dhq.me/ 一个类似网站 http://erldoc.com/ 非常感谢站长的分享, 菜鸟会能够学习很多的 这里可以看到不少资源 http://www.erlang cn.com/ 接下来就是一些牛人的博客了
阅读全文
摘要:-module(ex_grid).-behaviour(wx_object).%% Client API-export([start/1, new/0]).%% wx_object callbacks-export([init/1, terminate/2, code_change/3, han...
阅读全文
摘要:code path: the code path consists of the current working directory and all Erlang object code directories under the library directory $OTPROOT/lib, wh
阅读全文
摘要:-module(ex_aui).-behaviour(wx_object).%% Client API-export([start/1, new/0]).%% wx_object callbacks-export([init/1, terminate/2, code_change/3, hand...
阅读全文
摘要:到目前为止还没做到用erlang在编辑框里面实现换行,这个得下次处理下! % 在Erlang 中,wxTextCtrl控件的使用是和string 这个模块密切相关的 module(text_spin). behaviour(wx_object). export([new/0, start/1, de
阅读全文
摘要:-module(text_ctrl_draw).-behaviour(wx_object).-export([new/0, start/1, destroy/0]).-export([init/1, terminate/2, code_change/3, ...
阅读全文
摘要:erlang生成日期如 "2015 03 05" 一般生成的是 "2015 3 5" 一: 生成格式如:"2010 01 10" datetime_utils:datetime_as_string({erlang:date(), undefined}) datetime_as_string({{Y,
阅读全文
摘要:预:7 [I || <<I:1 <= <<"abc" ].[0,1,1,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1]8 [I || <<I:8 <= <<"abc" ]."abc"(0)list_to_binary("www.Shank.kuang"). <<...
阅读全文
摘要:string 的一些功能操作,这些可能和wxTextCtrl 控件配合使用的比较多 (0)目的:["a","b","c","d"] "abcd"
L1 = ["a","b","c","d"],
binary_to_list(list_to_binary(L1)).
"abcd" (1)求字符串的...
阅读全文

浙公网安备 33010602011771号