摘要: Math.c { __declspec (dllexport) double Add (xx, xx) {...}} MathApp.c { __declspec(dllimport) double Add (xx, xx); } 1.生成dll cl /LD Math.c => Math.obj 阅读全文
posted @ 2016-11-23 21:08 鱼悠游 阅读(169) 评论(0) 推荐(0) 编辑
摘要: Link: Rvalue References and Perfect Forwarding in C++0x (https://www.justsoftwaresolutions.co.uk/cplusplus/rvalue_references_and_perfect_forwarding.ht 阅读全文
posted @ 2016-09-12 20:03 鱼悠游 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 1. an very useful simple git guide link: http://rogerdudler.github.io/git-guide/index.zh.html 阅读全文
posted @ 2016-08-20 16:25 鱼悠游 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1. checkout fatherDir下所有一级子目录下名称为text.txt的文件到change list 1234: p4 edit -c 1234 -t text+k "fatherDir\*\test.txt" 阅读全文
posted @ 2016-08-16 18:08 鱼悠游 阅读(443) 评论(0) 推荐(0) 编辑
摘要: In Comupter Secuity: from https://en.wikipedia.org/wiki/Sandbox_(computer_security) In computer security, a sandbox is a security mechanism for separa 阅读全文
posted @ 2016-08-05 16:36 鱼悠游 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1. Java Classloader 链接: https://en.wikipedia.org/wiki/Java_Classloader 摘要: The Java Classloader is a part of the JRE that dynamically loads Java class 阅读全文
posted @ 2016-08-05 16:27 鱼悠游 阅读(213) 评论(0) 推荐(0) 编辑
摘要: Reference: https://spring.io/guides/gs/rest-service/ 参照上述链接进行操作,使用gradle build. 因为total new to this... 期间遇到的问题如下: 1. gradlew is not a command: 原因: ins 阅读全文
posted @ 2016-08-04 20:46 鱼悠游 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 1. git 阅读全文
posted @ 2016-08-04 16:16 鱼悠游 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 1.信号量与互斥体的不同之处: 不需要由最初获取它的那个线程来释放。 信号量可以用来调停对资源池的访问。 2. 条件变量: 允许任意复杂的条件表达式作为等待条件,允许更复杂的调度策略。 阅读全文
posted @ 2016-07-13 14:50 鱼悠游 阅读(136) 评论(0) 推荐(0) 编辑
摘要: See at: 补充栏3: C++对象和共享内存 (叙述内容和Link1的内容基本一致) 《C++网络编程 卷1:运用ACE和模式消除复杂性》 《C++ Network Programming Volume 1 Mastering Complexity with ACE and Patterns》 阅读全文
posted @ 2016-07-01 21:22 鱼悠游 阅读(357) 评论(0) 推荐(0) 编辑