作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 plist 中获取一个整数并将其与 sin_port
一起使用。但是 sin_port
需要一个 unsigned short
而不是 int
如何将 int
转换为 unsigned短整型
?
最佳答案
我不知道 Objective-C,但在普通 C 中你可以做类似的事情
int value = 1234;
unsigned short sin_port = (unsigned short) value;
关于iphone - 如何从 int 转换为无符号短整型 - iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11432040/
我是一名优秀的程序员,十分优秀!