w*s 发帖数: 7227 | 1 检测高手的时候到了
how to convert my c code into python ?
struct Header{
int f1;
int f2;
};
struct Data{
long f3;
unsigned short f4;
...
};
struct Info{
struct Header myHeader;
struct Data mhData;
};
struct Info myInfo;
// initialization here
myFunc(&myInfo, 1, 2, 3); | X****r 发帖数: 3557 | 2 // initialization here
MyFunc(my_info, 1, 2, 3)
【在 w*s 的大作中提到】 : 检测高手的时候到了 : how to convert my c code into python ? : struct Header{ : int f1; : int f2; : }; : struct Data{ : long f3; : unsigned short f4; : ...
| w*s 发帖数: 7227 | 3 你肯定这样行吗?好像很深刻
【在 X****r 的大作中提到】 : // initialization here : MyFunc(my_info, 1, 2, 3)
| w*s 发帖数: 7227 | 4 那位大牛评论一下吧,这位大牛对不对?
【在 X****r 的大作中提到】 : // initialization here : MyFunc(my_info, 1, 2, 3)
| v*******e 发帖数: 11604 | 5 不知道啊,楼主的C思维,python怕是理解不了。 | r****t 发帖数: 10904 | 6 Header = [('f1', 'i4'),('f2', 'i4')]
Data = [('f3', 'i8'),('f4','u4'),...]
Info = [('myHeader',Header), ('mhData',Data)]
myinfo = np.array(((0,0), (0,0)), dtype=Info)
myfunc(myinfo, 1, 2, 3)
另 in python don't use camel case name for variables and functions, that's
quite ugly.
【在 w*s 的大作中提到】 : 检测高手的时候到了 : how to convert my c code into python ? : struct Header{ : int f1; : int f2; : }; : struct Data{ : long f3; : unsigned short f4; : ...
| c********l 发帖数: 8138 | 7 用dict类型而不是tuple岂不是更好?
myHeader = { 'f1': 'i4', 'f2': 'i4'};
【在 r****t 的大作中提到】 : Header = [('f1', 'i4'),('f2', 'i4')] : Data = [('f3', 'i8'),('f4','u4'),...] : Info = [('myHeader',Header), ('mhData',Data)] : myinfo = np.array(((0,0), (0,0)), dtype=Info) : myfunc(myinfo, 1, 2, 3) : 另 in python don't use camel case name for variables and functions, that's : quite ugly.
| r****t 发帖数: 10904 | 8 内存里面不一样了. 我那个至少还比较接近
【在 c********l 的大作中提到】 : 用dict类型而不是tuple岂不是更好? : myHeader = { 'f1': 'i4', 'f2': 'i4'};
| c********l 发帖数: 8138 | 9 .....
【在 r****t 的大作中提到】 : 内存里面不一样了. 我那个至少还比较接近
|
|