大约有 9,000 项符合查询结果(耗时:0.0270秒) [XML]
64 bit OS下int占几个字节? - C/C++ - 清泛网 - 专注C/C++及内核技术
64 bit OS下int占几个字节?int固定4字节,不要受64 bit的混淆。int是由编程语言设计决定的,不受编译器的影响。__int64才是8位的。另外,指针是受编译器 OS影响的,3...int固定4字节,不要受64 bit的混淆。int是由编程语言设计决定的...
一文讲透区块链技术原理 - 资讯 - 清泛网 - 专注C/C++及内核技术
...中的椭圆曲线数字签名算法(ECDSA)来实现去中心化的P2P系统设计。但区块链的作用不仅仅局限在比特币上。现在,人们在使用“区块链”这个词时,有的时候是指数据结构,有时是指数据库,有时则是指数据库技术,但无论是...
常用Linux命令详解(持续更新) - 更多技术 - 清泛网 - 专注C/C++及内核技术
...h;ntpl 命令可以查看系统端口及IP的绑定情况。
13.查看操作系统版本及位数(32位或64位)
uname -a 命令可以查看Linux系统内核版本及系统位数(i386:32位,x86_64:64位)。
(清泛网会对此文进行持续整理、改进。)
Linux 命...
ros 基本调试 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...地找出和判断ros的运行状态,调试信息是非常重要的。从操作系统得到默认的调试输出很容易,但是这些输出对于定位问题尤其是bugs没有太大作用。
本文旨在告诉读者如何生成有用的调试信息,通过这些信息可以直接判断出操...
MFC子窗口和父窗口(SetParent,SetOwner) - C/C++ - 清泛网 - 专注C/C++及内核技术
MFC子窗口和父窗口(SetParent,SetOwner)在windows系统中,每个窗口对象都对应有一个数据结构,形成一个list链表。系统的窗口管理器通过这个list来获取窗口信息和管理每个窗口。一、概念和区别
在windows系统中,每个窗口对象都对...
Set environment variables on Mac OS X Lion
...
First, one thing to recognize about OS X is that it is built on Unix. This is where the .bash_profile comes in. When you start the Terminal app in OS X you get a bash shell by default. The bash shell comes from Unix and when it loads it runs the .bash_profile s...
How to duplicate sys.stdout to a log file?
....6, see below for
# an updated 3.3+-compatible version.
import subprocess, os, sys
# Unbuffer output (this ensures the output is in the correct order)
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)
tee = subprocess.Popen(["tee", "log.txt"], stdin=subprocess.PIPE)
os.dup2(tee.stdin.fileno(), s...
Win32汇编--使用MASM - C/C++ - 清泛网 - 专注C/C++及内核技术
...部分,Windows自身的运行也调用这些API函数。
在DOS下,操作系统的功能是通过各种软中断来实现的,如大家都知道int 21h是DOS中断,int 13h和int 10h是BIOS中的磁盘中断和视频中断。当应用程序要引用系统功能时,要把相应的参数...
What languages are Windows, Mac OS X and Linux written in?
I was just wondering who knows what programming languages Windows, Mac OS X and Linux are made up from and what languages are used for each part of the OS (ie: Kernel, plug-in architecture, GUI components, etc).
...
What are the differences between virtual memory and physical memory?
...r head around have to do with specific implementations of virtual memory, most likely paging. There is no one way to do paging - there are many implementations and the one your textbook describes is likely not the same as the one that appears in real OSes like Linux/Windows - there are probably subt...