make 和make up 在翻译成“编造”时的区别

来源:百度知道 编辑:UC知道 时间:2024/06/28 20:21:15
如make a setece 和make up a sentence 的区别

make up 是编造 编造谎言

make 就单单是造 make a sentence 造句子

MAKELONG 是 c 里一个代参数的宏

#define MAKELONG(a, b) ((LONG) (((WORD) (a)) | ((DWORD) ((WORD) (b))) << 16))

不解释了,再送几个相关的

Public Function MakeLong(ByVal LoWord As Integer, _
ByVal HiWord As Integer) As Long

MakeLong = ((HiWord * &H10000) + LoWord)

End Function

Public Function HiByte(ByVal w As Integer) As Byte
Dim hi As Integer
If w And &H8000 Then hi = &H4000

HiByte = (w And &H7FFE) \ 256
HiByte = (HiByte Or (hi \ 128))

End Function