摘要:
struct Foo;impl Drop for Foo { fn drop(&mut self) { println!("drop"); }}fn main() { let _ = Foo; println!("After");}http://is.gd/SQ... 阅读全文
摘要:
我在 VS 14 CTP 中新建了一个空的 app store 项目名叫 PlayWithXaml ,项目的 MainPage.xaml 文件改为了以下内容: I don't feel good 现在... 阅读全文
摘要:
之前见到有人问输入10个互不相同的数字并分成5对有多少种分法,感觉这个问题有点意思就写了一个。#include #include #include #include templatestd::array, N + 1>append(const std::array& add, const std::... 阅读全文
摘要:
Your task is to program a function which converts any input to an integer.Do not perform rounding, the fractional part should simply be discarded.If converting the input to an integer does not make sense (with an object, for instance), the function should return 0 (zero).Also, Math.floor(), parseInt 阅读全文
摘要:
(defun comment-this-level () (interactive) (move-beginning-of-line 1) (set-mark-command nil) (forward-sexp nil) (comment-dwim nil))(global-set-key (kbd "C-;") 'comment-this-level);;I feels good! 阅读全文
摘要:
Go还是挺可爱的,蛮喜欢~语法以及内建函数库都不错。 阅读全文
摘要:
本文原载于我的wp博客 http://mi-wiki.info/wp/2011/12/23/php-torrent-file-parser-again/转载请注明。PHP对静态词法域的支持有点奇怪,内部匿名函数必须在参数列表后面加上use关键字,显式的说明想要使用哪些外层函数的局部变量。 1 function count_down($count) 2 { 3 return $func = function() 4 use($count,$func) 5 { 6 if(--$count > 0) 7 $func(); 8 ... 阅读全文
摘要:
#include <stdio.h>#include <windows.h>void ShowKey(char *key,int level){ HKEY hKey; if(ERROR_SUCCESS == RegOpenKeyEx(HKEY_CLASSES_ROOT,key,0,KEY_ENUMERATE_SUB_KEYS,&hKey)){ LONG ret = ERROR_SUCCESS; int index = 0; char buffer[8192]; while(ret != ERROR_NO_MORE_ITEMS){ DWORD buffer_siz 阅读全文
摘要:
好久没更新了……贴一个最近做的图片转文字的大小东西吧=w=#ifndef UNICODE#define UNICODE#endif#ifndef _UNICODE//#define _UNICODE#endif//#include <stdio.h>#include <windows.h>#include <assert.h>#include <malloc.h>LRESULT CALLBACK WndProc(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam){ static HWND hwndTex 阅读全文
摘要:
昨天晚上在做GDI+的一个图形程序,想试试系统中的哪个预定义颜色比较适合作为人脸的颜色,结果犹豫了半天没选好。如果做个小程序直接把各种预定义的颜色一行一行展示出来那不就方便了!后面参考了一篇关于反射的文章,感觉利用反射可以达到我们的目标。参考的是这篇文章:http://download.csdn.net/source/1184896 (第02个小程序:遍历画笔(FlipThroughTheBrushes.cs))程序比较短小,就是利用Brushes这个类型做反射,遍历里面的所有的域,然后一行一行画在我们的主窗口上。下面是整个小程序。(做的过程中试了下用VS2005的命令行程序做编译,然后用Ed 阅读全文