回答
它是帶有一個參數的函數的定義。該參數是一個未命名的指向int數組的指針。
有專門爲C胡言亂語處理並將其轉換爲英文網站: cdecl.org試試吧)這是方便,有時甚至是有趣的。
它指出表示:declare f as function (pointer to array 7 of int) returning void
。
爲什麼downvote?是的,答案是一樣的,但我提供了一個有用的鏈接。 – FreeNickname
有用的鏈接可能是一個評論,不是? – juanchopanza
@ juanchopanza爲什麼要做出單獨的評論,當你可以給出正確的答案*和*一個鏈接,允許在未來自己的未知的胡言亂語? – user2079303
- 1. typedef int function(void *)是什麼意思?
- 2. void(^)(NSData *)是什麼意思?
- 3. decltype(void())中的void()是什麼意思?
- 4. 「void *(*)(void *)」在C++中是什麼意思?
- 5. void 2中的void是什麼意思
- 6. regex [* \ f] +是什麼意思?
- 7. 1.f是什麼意思
- 8. 什麼INT&F = D的意思
- 9. * int是什麼意思?
- 10. int values []是什麼意思?
- 11. int A [] = {}是什麼意思?
- 12. n%7是什麼意思?
- 13. 什麼是(int - > int) - >(int - > int)是什麼意思?
- 14. int(* ret)()=(int(*)())代碼是什麼意思?
- 15. int test [] = new int [0]是什麼意思?
- 16. JavaScript:「void 0」是什麼意思?
- 17. (char *)x或(void *)z是什麼意思?
- 18. 這是什麼意思? void * free_me = 0;
- 19. 什麼`circle:(null:?{setNativeProps(props:Object):void})`意思是
- 20. 'typename Enable = void'是什麼意思?
- 21. (void(^)(BOOL支持))是什麼意思?
- 22. (void)sizeof(0 [array])是什麼意思?
- 23. curl -F是什麼意思? PHP的instagram
- 24. 在PowerShell中的-f是什麼意思?
- 25. println(f(a))是什麼意思?
- 26. 是什麼意思:'std :: ios_base&(* f)(std :: ios_base&))'
- 27. 是什麼意思:是什麼意思?
- 28. 這是什麼意思? (int&)a
- 29. 是什麼(INT - > INT)是什麼意思?
- 30. 'a'在Ruby open()中意味着什麼?| f |是什麼意思?意思?
雖然鏈接的問題沒有明確地回答你關於你的具體結構的問題,但它確實給了你解決這個問題所需的兩個工具,以及其他有關「這是什麼意思」的問題--cdecl工具和螺旋規則。 – DevSolar