Browse Wiki & Semantic Web

Jump to: navigation, search
Http://dbpedia.org/resource/Bit field
  This page has no properties.
hide properties that link here 
  No properties link to this page.
 
http://dbpedia.org/resource/Bit_field
http://dbpedia.org/ontology/abstract ビットフィールド (英: bit field) は、プログラミングにおいてブーリアンビットフィールド (英: bit field) は、プログラミングにおいてブーリアン型のフラグをコンパクトなビットの並びとして格納する手法である。ビットフィールドの格納には、整数型を使用する。個々のフラグは、ビット単位で格納される。通常は、ソースコードで、個別のビットがフラグに対応する意味を付けられた、2の冪乗の定数が定義される。ビット演算の論理積・論理和・否定の組み合わせが、フラグのセット・リセットとテストを行うために使われる。 ビットフィールドはとは異なる。ビット配列は、整数でインデックスを付けられた大きなビットの集合を保存するために使用され、コンピュータ言語でサポートされる整数型よりも大きいことがある。一方、ビットフィールドは典型的にはワードサイズの範囲内であり、各ビットを参照する表記法は数値によるインデックスから独立している。ただし、ビットフィールドを用いるよりも、それぞれのフラグのビットインデックスが列挙型の値であるようなビット配列を使用することで、安全かつ簡潔で、高速に動作する実装となる。値であるようなビット配列を使用することで、安全かつ簡潔で、高速に動作する実装となる。 , 位段(或称“位域”,Bit field)为一种数据结构,可以把数据以位元的形式紧凑的储存,并允许程序员对此结构的位元进行操作。这种数据结构的好处: * 可以使数据单元节省储存空间,当程序需要成千上万个数据单元时,这种方法就显得尤为重要。 * 位段可以很方便的访问一个整數值的部分内容从而可以简化程序源代码。 而位域这种数据结构的缺点在于,其内存分配与内存对齐的实现方式依赖于具体的机器和系统,在不同的平台可能有不同的结果,这导致了位段在本质上是不可移植的。 , Un campo di bit è una struttura dati utiliUn campo di bit è una struttura dati utilizzata nella programmazione del computer. Consiste di un numero di locazioni di memoria del computer adiacenti che sono state allocate per contenere una sequenza di bit, memorizzate in modo che ogni singolo bit o gruppo di bit all'interno dell'insieme possa essere indirizzato. Un campo di bit è più comunemente usato per rappresentare di larghezza di bit fissa nota. Il significato dei singoli bit all'interno del campo è determinato dal programmatore; ad esempio, il primo bit in un campo di bit (situato all'indirizzo di base del campo) viene talvolta utilizzato per determinare lo stato di un particolare attributo associato al campo di bit. All'interno di microprocessori e altri dispositivi logici, raccolte di campi di bit denominati "flag" sono comunemente utilizzati per controllare o indicare lo stato intermedio o il risultato di particolari operazioni. I microprocessori hanno tipicamente un registro di stato composto da tali flag, utilizzati per indicare varie condizioni post-operazione, ad esempio un overflow aritmetico. I flag possono essere letti e usati per decidere le operazioni successive, come nell'elaborazione delle istruzioni di salto condizionale. Ad esempio, un <span class="nf">JE</span><span class="w"> </span><span class="no">...</span><span class="w"></span> <span class="nf">JE</span><span class="w"> </span><span class="no">...</span><span class="w"></span> <span class="nf">JE</span><span class="w"> </span><span class="no">...</span><span class="w"></span> (Salta se uguale) nel linguaggio assembly x86 risulterà in un salto se il flag Z (zero) è stato impostato da qualche operazione precedente. Un campo di bit si distingue da un in quanto quest'ultimo viene utilizzato per memorizzare un ampio insieme di bit indicizzati da numeri interi ed è spesso più ampio di qualsiasi tipo integrale supportato dal linguaggio. I campi di bit, d'altra parte, tipicamente rientrano in una word del calcolatore, e la denotazione dei bit è indipendente dal loro indice numerico.t è indipendente dal loro indice numerico. , Pole bitowe – konstrukcja w języku C oraz Pole bitowe – konstrukcja w języku C oraz C++, deklarująca zmienną składową struktury lub klasy jako zmienną typu całkowitoliczbowego, zajmującą określoną liczbę bitów. Wartość wyrażenia określającego długość pola musi być znana w momencie kompilacji. Pola bitowe można zastosować w celu optymalizacji (zmniejszenia) zajętości pamięci. Należy jednak mieć na uwadze fakt, że czas dostępu do pola bitowego jest dłuższy od czasu dostępu do zmiennej całkowitej. Podstawowym zastosowaniem pól bitowych jest obsługa urządzeń zewnętrznych dostępnych przez porty wejścia/wyjścia lub przez określony obszar pamięci.yjścia lub przez określony obszar pamięci. , 비트 필드(bit field)는 컴퓨터 프로그래밍에 쓰이는 자료 구조이다. 비트 필드(bit field)는 컴퓨터 프로그래밍에 쓰이는 자료 구조이다. 수많은 인접 컴퓨터 메모리 위치들로 이루어져 있으며 일련의 비트를 보유하기 위해 할당되며 하나의 비트나 여러 비트의 그룹의 주소를 참조할 수 있도록 저장된다. 비트 필드는 알려진 고정 비트 너비의 정수형을 표현하기 위해 흔히 사용된다. 필드 안의 개개의 비트의 의미는 프로그래머에 의해 결정된다. 이를테면 비트 필드의 첫 비트(에 위치)는 비트 필드와 관련된 특정 속성의 상태를 결정하기 위해 사용되기도 한다. 마이크로프로세서와 기타 로직 장치 안에서 "플래그"(flag)라는 이름의 비트 필드의 모음들은 특정 동작의 즉각적인 상태나 결과를 제어하거나 인지하기 위해 흔히 사용된다. 마이크로프로세서들은 일반적으로 이러한 플래그를 구성하는 상태 레지스터가 있으며 이를테면 산술 오버플로와 같이 다양한 동작 후 조건들을 지시하기 위해 사용된다. 플래그들은 조건 점프 명령을 처리하는 등의 차기 동작을 결정하기 위해 읽고 사용할 수 있다. 이를테면 에서 je(Jump If Equal) 명령은 이전의 일부 동작에 의해 Z(제로) 플래그가 설정되는 경우 점프를 하도록 만든다. 비트 필드는 과 구별되는데 후자의 경우 정수에 의해 색인화되는 커다란 비트 모임을 저장하기 위해 사용되며 언어에 의해 지원되는 정수형보다 종종 더 큰 편이다. 한편 비트 필드는 일반적으로 기계의 워드 안에 들어맞으며, 비트의 표기는 비트의 숫자 색인과는 독립적이다.계의 워드 안에 들어맞으며, 비트의 표기는 비트의 숫자 색인과는 독립적이다. , A bit field is a data structure that consiA bit field is a data structure that consists of one or more adjacent bits which have been allocated for specific purposes, so that any single bit or group of bits within the structure can be set or inspected. A bit field is most commonly used to represent integral types of known, fixed bit-width, such as single-bit Booleans. The meaning of the individual bits within the field is determined by the programmer; for example, the first bit in a bit field (located at the field's base address) is sometimes used to determine the state of a particular attribute associated with the bit field. Within CPUs and other logic devices, collections of bit fields called flags are commonly used to control or to indicate the outcome of particular operations. Processors have a status register that is composed of flags. For example if the result of an addition cannot be represented in the destination an arithmetic overflow is set. The flags can be used to decide subsequent operations, such as conditional jump instructions. For example, a <span class="nf">JE</span> <span class="no">...</span> (Jump if Equal) instruction in the x86 assembly language will result in a jump if the Z (zero) flag was set by some previous operation. A bit field is distinguished from a bit array in that the latter is used to store a large set of bits indexed by integers and is often wider than any integral type supported by the language. Bit fields, on the other hand, typically fit within a machine word, and the denotation of bits is independent of their numerical index.s is independent of their numerical index. , In der Informationstechnik und ProgrammierIn der Informationstechnik und Programmierung bezeichnet ein Bitfeld ein vorzeichenloses Integer, in dem einzelne Bits oder Gruppen von Bits aneinandergereiht werden. Es stellt eine Art Verbunddatentyp auf Bit-Ebene dar. Im Gegensatz dazu steht der primitive Datentyp, bei dem der Wert aus allen Stellen gemeinsam gebildet wird. Eine verbreitete Verwendung ist die, bei der jede einzelne Binärstelle ein Flag repräsentiert. Dabei entspricht jede Stelle einer booleschen Variablen. Es können aber auch mehrere Stellen einen Wert bilden, z. B. können in einem Byte auch zwei Nibbles zusammengefasst sein oder, wie bei IPv4-Adressen, ein 32-Bit-Datenwort in (beispielsweise) 24-Bit-Netzwerk- und 8-Bit-Hostteil aufgeteilt sein. Es findet sich auch die Sprechweise „Bitvektor“, ohne damit immer auszudrücken, dass das einzelne Bit durch Indizierung ansprechbar ist. Indizierung von Bits wird im Artikel Bitkette behandelt.n Bits wird im Artikel Bitkette behandelt.
http://dbpedia.org/ontology/wikiPageExternalLink http://c2.com/cgi/wiki%3FBitField + , http://sourceforge.net/projects/libbit/ + , https://web.archive.org/web/20080203070726/http:/www.informit.com/guides/content.aspx%3Fg=cplusplus&seqNum=131 + , https://web.archive.org/web/20070428213243/http:/libbit.sourceforge.net/ + , http://publications.gbdirect.co.uk/c_book/chapter6/bitfields.html + , https://graphics.stanford.edu/~seander/bithacks.html +
http://dbpedia.org/ontology/wikiPageID 2667276
http://dbpedia.org/ontology/wikiPageLength 11286
http://dbpedia.org/ontology/wikiPageRevisionID 1123225457
http://dbpedia.org/ontology/wikiPageWikiLink http://dbpedia.org/resource/Branch_%28computer_science%29 + , http://dbpedia.org/resource/Logical_conjunction + , http://dbpedia.org/resource/Bit_array + , http://dbpedia.org/resource/Flag_field + , http://dbpedia.org/resource/Word_%28data_type%29 + , http://dbpedia.org/resource/C_%28programming_language%29 + , http://dbpedia.org/resource/CPU + , http://dbpedia.org/resource/Data_structure + , http://dbpedia.org/resource/Logical_operator + , http://dbpedia.org/resource/Binary_code + , http://dbpedia.org/resource/MOS_Technology_6502 + , http://dbpedia.org/resource/Bitboard + , http://dbpedia.org/resource/Base_address + , http://dbpedia.org/resource/Arithmetic_overflow + , http://dbpedia.org/resource/Bitwise_operations + , http://dbpedia.org/resource/C%2B%2B + , http://dbpedia.org/resource/Status_register + , http://dbpedia.org/resource/Category:Bit_data_structures + , http://dbpedia.org/resource/X86_assembly_language + , http://dbpedia.org/resource/Unspecified_behavior + , http://dbpedia.org/resource/Boolean_data_type + , http://dbpedia.org/resource/Bit + , http://dbpedia.org/resource/Exclusive_disjunction + , http://dbpedia.org/resource/Control_register + , http://dbpedia.org/resource/Program_status_word + , http://dbpedia.org/resource/Word_%28computer_architecture%29 + , http://dbpedia.org/resource/FLAGS_register_%28computing%29 + , http://dbpedia.org/resource/Category:Articles_with_example_C_code + , http://dbpedia.org/resource/Primitive_data_type + , http://dbpedia.org/resource/Mask_%28computing%29 + , http://dbpedia.org/resource/Logical_shift +
http://dbpedia.org/property/date May 2016
http://dbpedia.org/property/reason moved from Flag field
http://dbpedia.org/property/wikiPageUsesTemplate http://dbpedia.org/resource/Template:Citation_needed + , http://dbpedia.org/resource/Template:Cleanup + , http://dbpedia.org/resource/Template:Short_description +
http://purl.org/dc/terms/subject http://dbpedia.org/resource/Category:Bit_data_structures + , http://dbpedia.org/resource/Category:Articles_with_example_C_code +
http://purl.org/linguistics/gold/hypernym http://dbpedia.org/resource/Term +
http://www.w3.org/ns/prov#wasDerivedFrom http://en.wikipedia.org/wiki/Bit_field?oldid=1123225457&ns=0 +
http://xmlns.com/foaf/0.1/isPrimaryTopicOf http://en.wikipedia.org/wiki/Bit_field +
owl:sameAs http://dbpedia.org/resource/Bit_field + , http://it.dbpedia.org/resource/Campo_di_bit + , http://zh.dbpedia.org/resource/%E4%BD%8D%E6%AE%B5 + , http://ko.dbpedia.org/resource/%EB%B9%84%ED%8A%B8_%ED%95%84%EB%93%9C + , http://fa.dbpedia.org/resource/%D8%A8%DB%8C%D8%AA_%D9%81%DB%8C%D9%84%D8%AF + , http://rdf.freebase.com/ns/m.07wk_1 + , http://ja.dbpedia.org/resource/%E3%83%93%E3%83%83%E3%83%88%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89 + , http://de.dbpedia.org/resource/Bitfeld + , https://global.dbpedia.org/id/2FTXK + , http://ru.dbpedia.org/resource/%D0%91%D0%B8%D1%82%D0%BE%D0%B2%D0%BE%D0%B5_%D0%BF%D0%BE%D0%BB%D0%B5 + , http://pl.dbpedia.org/resource/Pole_bitowe + , http://he.dbpedia.org/resource/%D7%93%D7%92%D7%9C_%28%D7%9E%D7%97%D7%A9%D7%91%D7%99%D7%9D%29 + , http://www.wikidata.org/entity/Q2374485 + , http://tl.dbpedia.org/resource/Bit_field +
rdfs:comment 비트 필드(bit field)는 컴퓨터 프로그래밍에 쓰이는 자료 구조이다. 비트 필드(bit field)는 컴퓨터 프로그래밍에 쓰이는 자료 구조이다. 수많은 인접 컴퓨터 메모리 위치들로 이루어져 있으며 일련의 비트를 보유하기 위해 할당되며 하나의 비트나 여러 비트의 그룹의 주소를 참조할 수 있도록 저장된다. 비트 필드는 알려진 고정 비트 너비의 정수형을 표현하기 위해 흔히 사용된다. 필드 안의 개개의 비트의 의미는 프로그래머에 의해 결정된다. 이를테면 비트 필드의 첫 비트(에 위치)는 비트 필드와 관련된 특정 속성의 상태를 결정하기 위해 사용되기도 한다. 마이크로프로세서와 기타 로직 장치 안에서 "플래그"(flag)라는 이름의 비트 필드의 모음들은 특정 동작의 즉각적인 상태나 결과를 제어하거나 인지하기 위해 흔히 사용된다. 마이크로프로세서들은 일반적으로 이러한 플래그를 구성하는 상태 레지스터가 있으며 이를테면 산술 오버플로와 같이 다양한 동작 후 조건들을 지시하기 위해 사용된다. 플래그들은 조건 점프 명령을 처리하는 등의 차기 동작을 결정하기 위해 읽고 사용할 수 있다. 이를테면 에서 je(Jump If Equal) 명령은 이전의 일부 동작에 의해 Z(제로) 플래그가 설정되는 경우 점프를 하도록 만든다. 일부 동작에 의해 Z(제로) 플래그가 설정되는 경우 점프를 하도록 만든다. , Pole bitowe – konstrukcja w języku C oraz Pole bitowe – konstrukcja w języku C oraz C++, deklarująca zmienną składową struktury lub klasy jako zmienną typu całkowitoliczbowego, zajmującą określoną liczbę bitów. Wartość wyrażenia określającego długość pola musi być znana w momencie kompilacji. Pola bitowe można zastosować w celu optymalizacji (zmniejszenia) zajętości pamięci. Należy jednak mieć na uwadze fakt, że czas dostępu do pola bitowego jest dłuższy od czasu dostępu do zmiennej całkowitej. Podstawowym zastosowaniem pól bitowych jest obsługa urządzeń zewnętrznych dostępnych przez porty wejścia/wyjścia lub przez określony obszar pamięci.yjścia lub przez określony obszar pamięci. , Un campo di bit è una struttura dati utiliUn campo di bit è una struttura dati utilizzata nella programmazione del computer. Consiste di un numero di locazioni di memoria del computer adiacenti che sono state allocate per contenere una sequenza di bit, memorizzate in modo che ogni singolo bit o gruppo di bit all'interno dell'insieme possa essere indirizzato. Un campo di bit è più comunemente usato per rappresentare di larghezza di bit fissa nota.presentare di larghezza di bit fissa nota. , In der Informationstechnik und ProgrammierIn der Informationstechnik und Programmierung bezeichnet ein Bitfeld ein vorzeichenloses Integer, in dem einzelne Bits oder Gruppen von Bits aneinandergereiht werden. Es stellt eine Art Verbunddatentyp auf Bit-Ebene dar. Im Gegensatz dazu steht der primitive Datentyp, bei dem der Wert aus allen Stellen gemeinsam gebildet wird. Es findet sich auch die Sprechweise „Bitvektor“, ohne damit immer auszudrücken, dass das einzelne Bit durch Indizierung ansprechbar ist. Indizierung von Bits wird im Artikel Bitkette behandelt.n Bits wird im Artikel Bitkette behandelt. , A bit field is a data structure that consiA bit field is a data structure that consists of one or more adjacent bits which have been allocated for specific purposes, so that any single bit or group of bits within the structure can be set or inspected. A bit field is most commonly used to represent integral types of known, fixed bit-width, such as single-bit Booleans. The meaning of the individual bits within the field is determined by the programmer; for example, the first bit in a bit field (located at the field's base address) is sometimes used to determine the state of a particular attribute associated with the bit field.r attribute associated with the bit field. , ビットフィールド (英: bit field) は、プログラミングにおいてブーリアンビットフィールド (英: bit field) は、プログラミングにおいてブーリアン型のフラグをコンパクトなビットの並びとして格納する手法である。ビットフィールドの格納には、整数型を使用する。個々のフラグは、ビット単位で格納される。通常は、ソースコードで、個別のビットがフラグに対応する意味を付けられた、2の冪乗の定数が定義される。ビット演算の論理積・論理和・否定の組み合わせが、フラグのセット・リセットとテストを行うために使われる。 ビットフィールドはとは異なる。ビット配列は、整数でインデックスを付けられた大きなビットの集合を保存するために使用され、コンピュータ言語でサポートされる整数型よりも大きいことがある。一方、ビットフィールドは典型的にはワードサイズの範囲内であり、各ビットを参照する表記法は数値によるインデックスから独立している。ただし、ビットフィールドを用いるよりも、それぞれのフラグのビットインデックスが列挙型の値であるようなビット配列を使用することで、安全かつ簡潔で、高速に動作する実装となる。値であるようなビット配列を使用することで、安全かつ簡潔で、高速に動作する実装となる。 , 位段(或称“位域”,Bit field)为一种数据结构,可以把数据以位元的形式紧凑的储存,并允许程序员对此结构的位元进行操作。这种数据结构的好处: * 可以使数据单元节省储存空间,当程序需要成千上万个数据单元时,这种方法就显得尤为重要。 * 位段可以很方便的访问一个整數值的部分内容从而可以简化程序源代码。 而位域这种数据结构的缺点在于,其内存分配与内存对齐的实现方式依赖于具体的机器和系统,在不同的平台可能有不同的结果,这导致了位段在本质上是不可移植的。
rdfs:label Pole bitowe , 비트 필드 , Битовое поле , Bitfeld , Campo di bit , 位段 , Bit field , ビットフィールド
hide properties that link here 
http://dbpedia.org/resource/Flag_word + , http://dbpedia.org/resource/Flag_bit + , http://dbpedia.org/resource/Bitfield + , http://dbpedia.org/resource/Flag_%28computing%29 + , http://dbpedia.org/resource/Flag_field + , http://dbpedia.org/resource/Bit-field + , http://dbpedia.org/resource/Flag_byte + http://dbpedia.org/ontology/wikiPageRedirects
http://dbpedia.org/resource/Microprocessor + , http://dbpedia.org/resource/Endianness + , http://dbpedia.org/resource/Bit_array + , http://dbpedia.org/resource/HRESULT + , http://dbpedia.org/resource/Boolean_flag + , http://dbpedia.org/resource/GLONASS + , http://dbpedia.org/resource/Rabbit_Semiconductor + , http://dbpedia.org/resource/Portable_Network_Graphics + , http://dbpedia.org/resource/FLAGS_register + , http://dbpedia.org/resource/Logical_disjunction + , http://dbpedia.org/resource/C_syntax + , http://dbpedia.org/resource/PDP-8 + , http://dbpedia.org/resource/Integer_literal + , http://dbpedia.org/resource/Mask_%28computing%29 + , http://dbpedia.org/resource/Integer_sorting + , http://dbpedia.org/resource/List_of_data_structures + , http://dbpedia.org/resource/Apple_Partition_Map + , http://dbpedia.org/resource/Stat_%28system_call%29 + , http://dbpedia.org/resource/Magic_Lantern_%28firmware%29 + , http://dbpedia.org/resource/Flag_word + , http://dbpedia.org/resource/GIF + , http://dbpedia.org/resource/Struct_%28C_programming_language%29 + , http://dbpedia.org/resource/SystemVerilog + , http://dbpedia.org/resource/ND812 + , http://dbpedia.org/resource/Flag_code + , http://dbpedia.org/resource/OpenCL + , http://dbpedia.org/resource/Bit_slicing + , http://dbpedia.org/resource/Flag_bit + , http://dbpedia.org/resource/Bitfield + , http://dbpedia.org/resource/PDP-10 + , http://dbpedia.org/resource/Assembly_language + , http://dbpedia.org/resource/C_data_types + , http://dbpedia.org/resource/Unix_file_types + , http://dbpedia.org/resource/Punched_card + , http://dbpedia.org/resource/Flag_%28computing%29 + , http://dbpedia.org/resource/Media-independent_interface + , http://dbpedia.org/resource/File-system_permissions + , http://dbpedia.org/resource/VGA_text_mode + , http://dbpedia.org/resource/Bit_manipulation + , http://dbpedia.org/resource/Broadcast_flag + , http://dbpedia.org/resource/Glitching + , http://dbpedia.org/resource/Tagged_pointer + , http://dbpedia.org/resource/GObject + , http://dbpedia.org/resource/Flag_field + , http://dbpedia.org/resource/Bit-field + , http://dbpedia.org/resource/Flag_byte + , http://dbpedia.org/resource/Bitfields + http://dbpedia.org/ontology/wikiPageWikiLink
http://en.wikipedia.org/wiki/Bit_field + http://xmlns.com/foaf/0.1/primaryTopic
http://dbpedia.org/resource/Bit_field + owl:sameAs
 

 

Enter the name of the page to start semantic browsing from.