pointer (computer programming) wikipedia - EAS

25,900,000 kết quả
  1. Pointer (computer programming) From Simple English Wikipedia, the free encyclopedia In computer science, a pointer is a variable whose value is a location in the computer's memory. If Rick stands in a room and points to his friend Sally, then Rick is a pointer whose value is Sally's location.
    simple.wikipedia.org/wiki/Pointer_(computer_programming)
    Mục này có hữu ích không?
  2. Mọi người cũng hỏi
    What is a pointer in programming?
    In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware.
    en.wikipedia.org/wiki/Pointer_(computer_programming)
    What is dereferencing a pointer?
    This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer.
    en.wikipedia.org/wiki/Pointer_(computer_programming)
    Who invented the pointer?
    However, it was unknown outside the Soviet Union and usually Harold Lawson is credited with the invention, in 1964, of the pointer.
    en.wikipedia.org/wiki/Pointer_(computer_programming)
    What is the difference between an I and a pointer?
    In your program, you refer to that location in memory by the name i. At the machine level that location has a memory address. The four bytes at that address are known to you, the programmer, as i, and the four bytes can hold one integer value. A pointer is different. A pointer is a variable that points to another variable.
  3. Xem thêm
    Xem tất cả trên Wikipedia

    Pointer (computer programming) - Wikipedia

    https://en.wikipedia.org/wiki/Pointer_(computer_programming)

    In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware. A pointer references a location in memory, and obtaining

     ...

    Xem thêm

    In 1955, Soviet computer scientist Kateryna Yushchenko invented the Address programming languagethat made possible indirect addressing and addresses of the highest rank – analogous to pointers. This language was widely used

     ...

    Xem thêm

    In computer science, a pointer is a kind of reference.
    A data primitive (or just primitive) is any datum that can be read

     ...

    Xem thêm

    Pointers are a very thin abstraction on top of the addressing capabilities provided by most modern architectures. In the simplest scheme, an

     ...

    Xem thêm

    Pointers are directly supported without restrictions in languages such as PL/I, C, C++, Pascal, FreeBASIC, and implicitly in most assembly languages. They are primarily used for

     ...

    Xem thêm

    As a pointer allows a program to attempt to access an object that may not be defined, pointers can be the origin of a variety of programming errors. However, the usefulness of pointers is so great that it can be difficult to perform programming tasks without them.

     ...

    Xem thêm

    Kinds defined by value
    Null pointer
    A null pointer has a value reserved for indicating that the pointer does not refer to a valid object. Null pointers are routinely used to represent conditions such as the end of a list

     ...

    Xem thêm

    In many languages, pointers have the additional restriction that the object they point to has a specific type. For example, a pointer may be declared to point to an integer;

     ...

    Xem thêm
    Văn bản Wikipedia theo giấy phép CC-BY-SA
    Mục này có hữu ích không?Cảm ơn! Cung cấp thêm phản hồi
  4. Con trỏ (lập trình máy tính) – Wikipedia tiếng Việt

    https://vi.wikipedia.org/wiki/Con_trỏ_(lập_trình_máy_tính)

    Trong khoa học máy tính, con trỏ (tiếng Anh: pointer) là một đối tượng ngôn ngữ lập trình, mà giá trị nó chỉ tới giá trị khác được chứa nơi nào đó trong bộ nhớ máy tính sử dụng địa chỉ bộ nhớ. Một con trỏ tham chiếu (reference) đến một vị trí trong bộ nhớ, và lấy giá trị được lưu ở vị trí đó được gọi là tham chiếu ngược (dereferencing) con trỏ. Minh họa bằng ví dụ là: Một số của trang được chỉ tro…

    Wikipedia · Nội dung trong CC-BY-SA giấy phép
  5. Pointer (computer programming) - Simple English Wikipedia ...

    https://simple.wikipedia.org/wiki/Pointer_(computer_programming)

    Pointer (computer programming) In computer science, a pointer is a variable whose value is a location in the computer's memory. If Rick stands in a room and points to his friend Sally, then Rick is a pointer whose value is Sally's location.

    • Thời gian đọc ước tính: 50 giây
    • Pointer - Wikipedia

      https://en.wikipedia.org/wiki/Pointer

      Computing and technology. Pointer (computer programming), a data type used in programming; Pointer (user interface), the graphical image which echoes movements of the pointing device, commonly a mouse or touchpad; Devices. Pointer (rod), an object used to point manually; Pointer, a dial indicator, that points to a value on a dial or scale

      • Thời gian đọc ước tính: 30 giây
      • Pointer (computer programming) - Wikiwand

        https://www.wikiwand.com/en/Pointer_(computer_programming)

        Pointer (computer programming) - Wikiwand. In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware.

      • Pointer (computer programming) - Wikipedia

        https://fr.abcdef.wiki/wiki/Pointer_(computer_programming)

        Pointeur (programmation informatique) - Pointer (computer programming) Un article de Wikipédia, l'encyclopédie libre Pour d'autres utilisations, voir Pointeur (homonymie) .

      • Pointer aliasing (computer programming) - Simple English ...

        https://simple.wikipedia.org/wiki/Pointer_aliasing_(computer_programming)

        Pointer aliasing (computer programming) From Simple English Wikipedia, the free encyclopedia. Jump to navigation Jump to search. Pointer aliasing is where two or more pointers reference the same memory location. It can cause issues with optimizing compilers . This short article about technology can be made longer.

      • Category:Pointers (computing) - Wikimedia Commons

        https://commons.wikimedia.org/wiki/Category:Pointers_(computing)

        Category:Pointers (computing) From Wikimedia Commons, the free media repository. Jump to navigation Jump to search. Not to be confused with categories: Pointing devices, Pointing icons or Cursor. See also category: C programming.

      • Pointer (computer programming) | Semantic Scholar

        https://www.semanticscholar.org/topic/Pointer-(computer-programming)/20732

        In computer science, a pointer is a programming language object, whose value refers to (or "points to") another value stored elsewhere in the computer memory using its memory address. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer.

      • Pointer Basics - The Basics of C Programming - Computer

        https://computer.howstuffworks.com/c22.htm

        A pointer is a variable that points to another variable. This means that a pointer holds the memory address of another variable. Put another way, the pointer does not hold a value in the traditional sense; instead, it holds the address of another variable.

        • Thời gian đọc ước tính: 4 phút
        • Tìm kiếm có liên quan cho pointer (computer programming) wikip



        Results by Google, Bing, Duck, Youtube, HotaVN