Is it possible to cast struct to another?

后端 未结 4 562
名媛妹妹
名媛妹妹 2020-12-28 19:03

Any one could describe how (struct sockaddr *)&server works here? Is it possible to cast bigger struct to smaller struct?

See these structs:

4条回答
  •  庸人自扰
    2020-12-28 19:41

    In C, it's possible to cast anything to anything. You could even omit the cast to (struct sockaddr*), and probably just get a compiler warning.

提交回复
热议问题