6.7.2.1 C99 मानक के अपने मसौदे के अनुच्छेद 14 इस (, हमेशा की तरह, अतिरिक्त बल) यूनियनों और संकेत के बारे में कहना है:क्या हम यूनियनों के साथ va_arg का उपयोग कर सकते हैं?
सभी अच्छी तरह से और अच्छेThe size of a union is sufficient to contain the largest of its members. The value of at most one of the members can be stored in a union object at any time. A pointer to a union object, suitably converted, points to each of its members (or if a member is a bit- field, then to the unit in which it resides), and vice versa.
, इसका मतलब है कि यह कानूनी है
union ints { int i; unsigned u; };
int i = 4;
union ints is = *(union ints *)&i;
int j = is.i; // legal
unsigned k = is.u; // not so much
7.15.1.1 पैरा 2 इस कहना है::
की तरह एक संघ में या तो एक हस्ताक्षरित या अहस्ताक्षरित int कॉपी करने के लिए निम्नलिखित, यह मानते हुए कि हम केवल एक ही प्रकार के डेटा में इसे बाहर की प्रतिलिपि बनाना चाहते कुछ करनाThe
va_arg
macro expands to an expression that has the specified type and the value of the next argument in the call. The parameterap
shall have been initialized by theva_start
orva_copy
macro (without an intervening invocation of theva_end
macro for the sameap). Each invocation of theva_arg
macro modifiesap
so that the values of successive arguments are returned in turn. The parametertype
shall be a type name specified such that the type of a pointer to an object that has the specified type can be obtained simply by postfixing a*
totype
. If there is no actual next argument, or if type is not compatible with the type of the actual next argument (as promoted according to the default argument promotions), the behavior is undefined, except for the following cases:—one type is a signed integer type, the other type is the corresponding unsigned integer type, and the value is representable in both types;
—one type is pointer to void and the other is a pointer to a character type.
मैं जाने के लिए नहीं जा रहा हूं और डिफ़ॉल्ट तर्क प्रचार के बारे में हिस्सा उद्धृत नहीं कर रहा हूं। मेरा प्रश्न है:
void func(int i, ...)
{
va_list arg;
va_start(arg, i);
union ints is = va_arg(arg, union ints);
va_end(arg);
}
int main(void)
{
func(0, 1);
return 0;
}
यदि हां, तो यह एक साफ चाल पर काबू पाने में प्रवेश किया हुआ/अहस्ताक्षरित पूर्णांक रूपांतरण की आवश्यकता "और मूल्य दोनों प्रकार के साथ संगत है" (हालांकि प्रतीत होता: इस परिभाषित व्यवहार है एक तरीका है जो कानूनी रूप से कुछ भी करना मुश्किल है)। यदि नहीं, तो यह इस मामले में केवल unsigned
का उपयोग करने के लिए सुरक्षित प्रतीत होता है, लेकिन यदि union
में अधिक असंगत प्रकारों के साथ अधिक तत्व थे तो क्या होगा? अगर हम गारंटी दे सकते हैं कि हम तत्व द्वारा यूनियन तक नहीं पहुंचेंगे (यानी हम इसे किसी अन्य union
या स्टोरेज स्पेस में कॉपी करते हैं जिसे हम union
जैसे इलाज कर रहे हैं) और यह कि संघ के सभी तत्व समान आकार हैं, क्या यह अनुमति है varargs के साथ? या यह केवल पॉइंटर्स के साथ अनुमति दी जाएगी?
प्रैक्टिस में मुझे उम्मीद है कि यह कोड लगभग कभी असफल नहीं होगा, लेकिन मैं जानना चाहता हूं कि यह परिभाषित व्यवहार है या नहीं। मेरा वर्तमान अनुमान यह है कि ऐसा परिभाषित नहीं किया गया है, लेकिन यह अविश्वसनीय रूप से गूंगा लगता है।
अब जब मैं इसके बारे में सोचता हूं, मुझे लगता है कि मुझे 'func (0, -1) में अधिक रुचि है; func (0, UINT_MAX); 'कानूनी है। 'func (0, 1)' कानूनी रूप से कानूनी हो सकता है क्योंकि 1 'int' और 'unsigned' दोनों में फिट बैठता है। –
'हस्ताक्षरित k = is.u;' सी 99 में कानूनी है। –
@Dietrich - क्या हस्ताक्षरित/हस्ताक्षरित चीज़ के कारण कोई अपवाद है? –