代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/417821/10975058
java bytefifo.java
public class ByteFIFO extends Object {
private byte[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ByteFIFO(int cap) {
capacity = ( cap >
www.eeworm.com/read/417821/10975111
java bytefifo.java
public class ByteFIFO extends Object {
private byte[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ByteFIFO(int cap) {
capacity = ( cap >
www.eeworm.com/read/417821/10975113
java simpleobjectfifo.java
public class SimpleObjectFIFO extends Object {
private Object[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public SimpleObjectFIFO(int cap) {
c
www.eeworm.com/read/417821/10975118
java objectfifo.java
public class ObjectFIFO extends Object {
private Object[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ObjectFIFO(int cap) {
capacity = (
www.eeworm.com/read/270963/11017869
cpp 16-01-01-1.cpp
#include
#include
#include
using namespace std;
int main()
{
vector v;
v.insert(v.begin(), 3);
assert(v.size() == 1 && v.capacity() >= 1 && v[0] == 3);
}
www.eeworm.com/read/311300/6900176
cpp sorting.cpp
#include
#include
#include
#include
using namespace std;
#define MAX_NAME 32
#define SIZE 255
#define TRUE 1
#define FALSE 0
struct student {
char lastName
www.eeworm.com/read/470800/6908487
cpp str2.cpp
// str2.cpp -- capacity() and reserve()
#include
#include
int main()
{
using namespace std;
string empty;
string small = "bit";
string larger = "Elephants a
www.eeworm.com/read/470800/6908775
cpp str2.cpp
// str2.cpp -- capacity() and reserve()
#include
#include
int main()
{
using namespace std;
string empty;
string small = "bit";
string larger = "Elephants a
www.eeworm.com/read/314041/6955515
m chancap.m
coaxmod;
h2=(abs(h(1:1024))).^2;
nmdl;
n2=(abs(h(1:1024))).^2;
df=max(f)/1025;
f1=ceil(1025*42e6/1.5e8);
f2=ceil(1025*52e6/1.5e8);
for psd=0:50
chacap(psd+1)=sum(log(1+10^(psd/10).*h2(f1:f2)./
www.eeworm.com/read/397410/6968136
java objectfifo.java
public class ObjectFIFO extends Object {
private Object[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ObjectFIFO(int cap) {
capacity = (