大约有 8,000 项符合查询结果(耗时:0.0225秒) [XML]

https://www.tsingfun.com/it/tech/1379.html 

写出高质量代码的10个Tips - 更多技术 - 清泛网 - 专注C/C++及内核技术

...质量的一些体会。 1. 打好基础 写出高质量代码,并不搭建空中楼阁,需要有一定的基础,这里我重点强调与代码质量密切相关的几点: 掌握好开发语言,比如做Android就必须对Java足够熟悉,《Effective Java》一书就教授大...
https://www.tsingfun.com/it/tech/1059.html 

浅谈TCP优化 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...rwnd」大小,用来表示自己最大能保存多少数据,这主要针对接收方而言的,通俗点儿说就让发送方知道接收方能吃几碗饭,如果窗口衰减到零,那么就说明吃饱了,必须消化消化,如果硬撑的话说不定会大小便失禁,那就...
https://stackoverflow.com/ques... 

Is System.nanoTime() completely useless?

As documented in the blog post Beware of System.nanoTime() in Java , on x86 systems, Java's System.nanoTime() returns the time value using a CPU specific counter. Now consider the following case I use to measure time of a call: ...
https://bbs.tsingfun.com/thread-1692-1-1.html 

BLE协议—广播和扫描 - 创客硬件开发 - 清泛IT社区,为创赋能!

广播和扫描在无线通信中非常重要的一个技术点。在BLE中,扫描和广播通信的基础,用户可以直接用扫描和广播进行数据的传输(数据量不大,功耗要求较高的情况下),也可以在广播和扫描的基础上进行连接后点对点通信...
https://www.tsingfun.com/it/tech/857.html 

Android代码优化小技巧 - 更多技术 - 清泛网 - 专注C/C++及内核技术

Android代码优化小技巧前言这篇文章主要介绍了一些小细节的优化技巧,当这些小技巧综合使用起来的时候,对于整个App的性能提升还有作用的,只不能较大幅度...前言 这篇文章主要介绍了一些小细节的优化技巧,当这...
https://www.tsingfun.com/it/cpp/2162.html 

Socket send函数和recv函数详解以及利用select()函数来进行指定时间的阻塞 ...

...阻塞int send( SOCKET s, const char FAR *buf, int len, int flags ); 不论客户还服务器应用程序都用send函数来向TCP连接的...int send( SOCKET s, const char FAR *buf, int len, int flags ); 不论客户还服务器应用程序都用send函数来向TCP连接的另一端发...
https://www.tsingfun.com/it/cp... 

INT 10H 中断介绍 - C/C++ - 清泛网 - 专注C/C++及内核技术

INT 10H 中断介绍int_10h_instructionsINT 10H 由 BIOS 对屏幕及显示器所提供的服务程序,而后倚天公司针对倚天中文提供了许多服务程序,这些服务程序也加挂在 INT 10H ... INT 10H 由 BIOS 对屏幕及显示器所提供的服务程序。使用 INT 10H...
https://stackoverflow.com/ques... 

Get Visual Studio to run a T4 Template on every build

... A better variable would be %COMMONPROGRAMFILES(x86)% instead of %COMMONPROGRAMFILES% as it would also work on a 64bit system. – Durden81 Mar 23 '12 at 11:42 ...
https://stackoverflow.com/ques... 

Visual Studio: How to “Copy to Output Directory” without copying the folder structure?

...west" /> </ItemGroup> <ItemGroup Condition="'$(Platform)' == 'x86'"> <None Include="Libs\x86\**" Link="\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" /> </ItemGroup> To any other folder, including Libs(RecursiveDir) folder <ItemGroup Condition="...
https://stackoverflow.com/ques... 

mingw-w64 threads: posix vs win32

...ion on Linux, so in case it helps someone else: The package g++-mingw-w64-x86-64 provides two files x86_64-w64-mingw32-g++-win32 and x86_64-w64-mingw32-g++-posix, and x86_64-w64-mingw32-g++ is aliased to one of them; see update-alternatives --display x86_64-w64-mingw32-g++. – s...