血型有AB、A、B、O四种:
AB是(ab),
A是(aa)或者(ai),
B是(bb)或者(bi),
O是(ii)。
所以血型搭配后的关系是
O+0=0
O+AB=A或者B
O+A=A或者O
O+B=B或者O
AB+A=A或者B或者AB
AB+B=A或者B或者AB
AB+AB=A或者B或者AB
A+B=A或者B或者AB或者0
A+A=A或者O
B+B=B或者O
Labels: Tip
LINK : fatal error LNK1104: cannot open file 'libcp.lib‘ 的解决
1. Ignore libcp.lib libc.lib(From MSDN)
Update link option /nodefaultlib:libc.lib /nodefaultlib:libcp.lib to prevent the linker from trying to pull those in.
A more detailed description
Labels: Yang
刚安好VS. Net 2005
没办法转任何程序,报错:“Unable to debug: The binding handle is invalid “
网上的解决办法:
"Visual Studio hosting process"
"Project" -> "[ProjectName] Properties..". -> "Debug" -> Disable "Enable the Visual Studio hosting process"
我的解决办法:
把配置的AnyCPU 改成 x86
MSDN的解决办法
Feedback: Attach to Process raises 'The binding handle is invalid' error: "Attach to Process raises 'The binding handle is invalid' error"
MSDN的帖子:http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=65188&SiteID=1
正解:
安装SP1: http://msdn.microsoft.com/vstudio/support/vs2005sp1/default.aspx
Labels: Yang