代码搜索:byte
找到约 10,000 项符合「byte」的源代码
代码结果 10,000
www.eeworm.com/read/162519/5544887
java byte.java
/* Byte.java -- object wrapper for byte
Copyright (C) 1998, 2001, 2002, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribu
www.eeworm.com/read/366902/9793526
h byte.h
//: C12:Byte.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Member overloaded operators
#ifndef
www.eeworm.com/read/366902/9793545
cpp byte.cpp
#include
using namespace std;
// Member functions (implicit "this"):
class Byte {
unsigned char b;
public:
Byte(unsigned char bb = 0) : b(bb) {}
// No side effects: const mem
www.eeworm.com/read/410990/11261541
txt byte.txt
;实验1.3
;把2字节的4位十六进制数转换为4字节的ASCII码
DATAS SEGMENT
ORG 3500H
DATA1 DB 0CAH,27H
ORG 350AH
DATA2 DB 4 DUP(?)
DATAS ENDS
STACKS SEGMENT
DW 64 DUP(?)
STACKS ENDS
CODES SEGMENT
ASSU
www.eeworm.com/read/410990/11261543
asm byte.asm
;实验1.3
;把2字节的4位十六进制数转换为4字节的ASCII码
DATAS SEGMENT
ORG 3500H
DATA1 DB 0CAH,27H
ORG 350AH
DATA2 DB 4 DUP(?)
DATAS ENDS
STACKS SEGMENT
DW 64 DUP(?)
STACKS ENDS
CODES SEGMENT
ASSU
www.eeworm.com/read/135507/13924979
bc byte.bc
0 iconst_0 //Push 0.
1 newarray byte //Pop 0 and create a new byte array with
//size 0. Push the newly created array
//reference(lock).
www.eeworm.com/read/103802/15720778
h byte.h
/* byte.h -- Magic C++ header file
(Mostly) portable public-domain implementation
-- Copyright(C) 2003 Magicunix Infomation Technology Limited
This file is part of magicd.
magicd is f