But...
...those aren't usually written in C or C++ (which was what spawned this discussion about the semantics of . versus ->).
In the places where you do want to employ C/C++, cache hit / chache miss usually does matter.

OK, yes, that is true. Somewhat less so when talking about Python, but topic drift is a thing and the specific matter at hand was the C/C++ member indirection operator.Solar wrote:I guess we're both right to some extend. Yes, perhaps today's software world is dominated by web frontends and user apps.
But...
...those aren't usually written in C or C++ (which was what spawned this discussion about the semantics of . versus ->).
In the places where you do want to employ C/C++, cache hit / chache miss usually does matter.
Code: Select all
int an_int, an_array[10], *a_ptr;
struct Foo_List {
int data;
Foo_List* next;
} *bar;
struct Foo_List baz, quux[16];
Code: Select all
bar.data;
Code: Select all
an_int = an_array;
Code: Select all
a_ptr = an_array;
Code: Select all
*bar.next = mumblemumble... ;
Code: Select all
(*bar).next
Code: Select all
bar.(*next)
Code: Select all
bar->next
It's still clear what the runtime behaviour of the code is, even if at first glance you can't necessarily tell whether the base address of the struct being accessed is given by a pointer or as a constant. In most cases, that isn't something you want to care about, as is the case when dealing with libraries where all the internal details are abstracted away through functions, nor is it something that's difficult to determine if you do need to know. This issue is somewhat orthogonal to the language design as well, since it can be addressed via other means such as hungarian notation (ie, "structptr.member"), syntax highlighting, and so on.Schol-R-LEA wrote:The first problem is simply that it is an exception to the rule that there needs to be a clear separation of operations on the pointer and operations on the object pointed to. You would have to know that bar was a pointer in order to understand this snippet's runtime behavior, which is part of what the member indirection operator makes explicit.
No run-time code is needed, it's handled identically to the way that C's member indirection operator is. You just declare a struct pointer and the compiler knows that whenever you use the dot operator on it, to do the same thing it does with the member indirection operator. This eliminates the pure rendundancy of the latter.Schol-R-LEA wrote:So the problem here is that in order to use the member operator with struct pointers the way Qbyte seems to want, the language would either need to keep track of what the pointer is pointing to - which would mean added run-time code to keep track of it, and it would always need to include it since the older compilers weren't smart enough to check for special cases - or just ignore the 'problem' just as it did with scalar arrays.
That's not ambiguous, because the indirection operator would invariably apply to "next", regardless of whether "bar" is a struct pointer or a just a constant struct address, because in the end, they both mean the same thing, which is the base address given by "bar" + the offset of the member(s). The only difference is that if "bar" is a pointer, its value can change during run-time, whereas the constant address will not. If "bar" is a pointer, the very act of using the dot operator on it automatically dereferences it, and the indirection operator then adds another level which dereferences the final member in the statement. For example:Schol-R-LEA wrote:The final problem is that the lineis ambiguous. Does the indirection operator apply to bar, or to bar.next?Code: Select all
*bar.next = mumblemumble... ;
Code: Select all
struct baz *bar // struct pointer declaration
bar = &foobar // set "bar" to base address of "foobar"
bar.next = &foo // set "next" to the address of "foo"
*bar.next = &foo // set the variable pointed to by "next" to the address of "foo"
While I agree with you on this point, the thing is that it speaks to the entire design ethos of the original C developers, and indeed most developers in the era C was designed in - they didn't see abstraction as desirable. Indeed, the idea of abstracting away details as a design principle (rather than just as a way of making it easier to write more code than you could with assembly language) was sort of an innovative idea at the time (mostly restricted to academic researchers such as Wirth, Dijkstra, Parnas, and Nygaard, and those at places such as Project MAC, Xerox PARC, and Circle Graphics Habitat), one which wasn't widespread until more than a decade later. While the researchers at Bell Labs would have been familiar with the idea, they wouldn't have seen it as relevant to systems programming, which was what C was meant for.¹Qbyte wrote:It's still clear what the runtime behaviour of the code is, even if at first glance you can't necessarily tell whether the base address of the struct being accessed is given by a pointer or as a constant. In most cases, that isn't something you want to care about, as is the case when dealing with libraries where all the internal details are abstracted away through functions, nor is it something that's difficult to determine if you do need to know.Schol-R-LEA wrote:The first problem is simply that it is an exception to the rule that there needs to be a clear separation of operations on the pointer and operations on the object pointed to. You would have to know that bar was a pointer in order to understand this snippet's runtime behavior, which is part of what the member indirection operator makes explicit.
list2 is simply an alias to list1.ggodw000 wrote:It has been source of all trouble:
Reason 1.Code: Select all
>>> a = 1 >>> b = a >>> a 1 >>> b 1 >>> a = 100 >>> a 100 >>> b 1 >>> >>> >>> list1 = [] >>> list1.append(100) >>> list2 = list1 >>> list1 [100] >>> list2 [100] >>> list1.append(101) >>> list1 [100, 101] >>> list2 [100, 101] >>>
Reason 2. When I ask technical question on python forum (first one that comes up on google search), no one can answer, just try this to see if it works, bunch of guesswork. Most of advices don't work.