Is it possible to cast struct to another?

后端 未结 4 563
名媛妹妹
名媛妹妹 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:49

    You can cast sockaddr_in to sockaddr, but you cannot usually cast ANY struct to ANY other and assume that things will work properly.

提交回复
热议问题