代码搜索:assignment
找到约 8,196 项符合「assignment」的源代码
代码结果 8,196
www.eeworm.com/read/193974/5138286
py test_augassign.py
# Augmented assignment test.
x = 2
x += 1
x *= 2
x **= 2
x -= 8
x //= 2
x //= 1
x %= 12
x &= 2
x |= 5
x ^= 1
print x
x = [2]
x[0] += 1
x[0] *= 2
x[0] **= 2
x[0] -= 8
x[0] //= 2
x[0] //= 2
x[0] %= 1
www.eeworm.com/read/391558/2519306
qsf data_buffer.qsf
set_instance_assignment -name LL_NODE_LOCATION M4K_X15_Y22 -to "scfifo:scfifo_component\|scfifo_39m:auto_generated\|a_dpfifo_ihi:dpfifo\|dpram_btj:FIFOram\|altsyncram_9kb1:altsyncram1\|ram_block2a7~po
www.eeworm.com/read/316596/13520593
txt java认证历年真题:scjp认证套题解析[2] .txt
JAVA认证历年真题:SCJP认证套题解析[2]
2007-04-01 11:18:09 作者:罗志中 来源:ITZERO收集整理 浏览次数:123 文字大小:【大】【中】【小】
关键字:java
21、Which of the following assignment is not correct?
A. float f = 11.1;
B. double d =
www.eeworm.com/read/204713/5029504
entries
/cypins_64k.tcl/1.1/Wed May 11 17:19:18 2005//
/jop.cdf/1.1/Wed May 11 17:19:18 2005//
/jop.qpf/1.1/Wed May 11 17:19:18 2005//
/jop.qsf/1.5/Wed Jan 11 14:12:32 2006//
/jop_assignment_defaults.qdf/1.1/
www.eeworm.com/read/424004/10508821
cpp ex7_4.cpp
//【例7.4】类含有动态生成的数据成员,必须自定义析构函数以释放动态分配的内存,自定义
//拷贝构造函数(Copy Structor)和拷贝赋值操作符(Copy Assignment Operator)实现深拷贝。
#include
#include
using namespace std;
class student{
char *pNa
www.eeworm.com/read/273268/10921540
cpp ex7_4.cpp
//【例7.4】类含有动态生成的数据成员,必须自定义析构函数以释放动态分配的内存,自定义
//拷贝构造函数(Copy Structor)和拷贝赋值操作符(Copy Assignment Operator)实现深拷贝。
#include
#include
using namespace std;
class student{
char *pNa
www.eeworm.com/read/316596/13520597
txt scjp认证套题解析之二 .txt
SCJP认证套题解析之二
2007-04-10 17:12:34 作者:马化鸦 来源:ITZERO收集整理 浏览次数:23 文字大小:【大】【中】【小】
关键字:java
21、Which of the following assignment is not correct?
A. float f = 11.1;
B. double d = 5.3E12;
C.
www.eeworm.com/read/139388/13158930
h 68k_spi.h
#ifndef __68K_SPI_H
#define __68K_SPI_H
// bits in port qs pin assignment register;
#define BM_PQSPA0 0x01
#define BM_PQSPA1 0x02
#define BM_PQSPA3 0x08
#define BM_PQSPA4 0x10
#define BM_PQSP
www.eeworm.com/read/258643/11848365
v bcd_to_excess_3b.v
module BCD_to_Excess_3b (B_out, B_in, clk, reset_b);
output B_out;
input B_in, clk, reset_b;
parameter S_0 = 3'b000, // State assignment
S_1 = 3'b001,
S_2 = 3'b101,
S_3 = 3'b1
www.eeworm.com/read/258643/11848796
v bcd_to_excess_3c.v
module BCD_to_Excess_3c (B_out, B_in, clk, reset_b);
output B_out;
input B_in, clk, reset_b;
parameter S_0 = 3'b000, // State assignment
S_1 = 3'b001,
S_2 = 3'b101,
S_3 = 3'b1