孤注一掷

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2026年5月19日

摘要: 一、引言整体舱段壳体是航空航天器结构中的重要组成部分,其对航空航天器的结构强度和整体性能具有重要影响。然而,整体舱段壳体的工艺设计与加工技术在长期以来一直受到限制和挑战。本文旨在通过对整体舱段壳体的工艺设计与加工技术进行综述和分析研究,为航空航天工业提供一定的参考和指导。二、整体舱段壳体的工艺设计整 阅读全文
posted @ 2026-05-19 10:46 孤注一掷 阅读(2) 评论(0) 推荐(0)

摘要: 一、STRUCTURE DESIGN PRINCIPLES 结构设计原理 飞机三大典型结构设计原则: 1. 机身:蒙皮固定在隔框(frames)上,由长桁(stringers)加强; 2. 翼盒/箱体结构:带加强筋的蒙皮,固定在翼梁(spars)和翼肋(ribs)上; 3. 复合材料构件:分为整体实 阅读全文
posted @ 2026-05-19 10:37 孤注一掷 阅读(5) 评论(0) 推荐(0)

摘要: start为寄存器起始地址 size为寄存器数量 按下apply键才会生效 阅读全文
posted @ 2026-05-19 10:12 孤注一掷 阅读(3) 评论(0) 推荐(0)

2018年2月10日

摘要: Let S be a set of $n$ objects; then the binomial coefficient $(^n_k)$ is the number of $k$-elements subsets of $S$. Thus $\sum_{k=0}^n(^n_k)$ is the n 阅读全文
posted @ 2018-02-10 02:00 孤注一掷 阅读(166) 评论(0) 推荐(0)

摘要: The power set of a set A is the collection of all subsets of A. When working with a finite set with n elements, one question that we might ask is, “Ho 阅读全文
posted @ 2018-02-10 00:59 孤注一掷 阅读(287) 评论(0) 推荐(0)

2017年12月5日

摘要: https://embeddedgurus.com/stack-overflow/2010/02/is-gcc-a-good-compiler/ The true productivity stopper I have found is not in which tool is being used 阅读全文
posted @ 2017-12-05 11:28 孤注一掷 阅读(158) 评论(0) 推荐(0)

2014年9月9日

摘要: 地址空间布局随机化(address space layout randomization,ASLR)使用EMET工具集来关闭和启用下载地址http://technet.microsoft.com/zh-cn/security/jj653751http://www.microsoft.com/en-u... 阅读全文
posted @ 2014-09-09 16:05 孤注一掷 阅读(265) 评论(0) 推荐(0)

2014年3月10日

摘要: 通过测试发现,SetWindowsHookEx跟你的执行线程有关,若你的线程在发起SetWindowsHookEx后的任一时间退出了,则该Hook会随着线程一起消失,因此稳妥的办法是开一个专用线程来保持这个HOOK 阅读全文
posted @ 2014-03-10 15:15 孤注一掷 阅读(206) 评论(0) 推荐(0)

2013年1月6日

摘要: 在逆向C++目标时,我们有时候可能会关注一个V表中到底有多少个虚函数。这种细节大概多半是与编译器实现相关。为了弄清楚这个问题,我在VS2008下写了一个简单的测试程序来探求这个问题的答案。下面是C++的测试程序源码:class IBox {public: virtual void f1() = 0; virtual void f2() = 0; virtual void f3() = 0; virtual void f4() = 0;};class Box : public IBox {protected: int id;public: Box() { id = 0; } Box(int b. 阅读全文
posted @ 2013-01-06 22:54 孤注一掷 阅读(356) 评论(0) 推荐(0)

摘要: http://blog.csdn.net/haoel/article/details/1948051/ 阅读全文
posted @ 2013-01-06 22:13 孤注一掷 阅读(158) 评论(0) 推荐(0)