代码搜索:Generics
找到约 1,477 项符合「Generics」的源代码
代码结果 1,477
www.eeworm.com/read/177773/5320069
cs form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Generics
{
www.eeworm.com/read/291453/8417579
txt fifo存储器举例:(注3).txt
-- A First-in First-out Memory
-- a first-in first out memory, uses a synchronising clock
-- generics allow fifos of different sizes to be instantiated
-- download from: www.fpga.com.cn & www.pld.c
www.eeworm.com/read/390924/8433423
txt fifo存儲器舉例:(注3).txt
-- A First-in First-out Memory
-- a first-in first out memory, uses a synchronising clock
-- generics allow fifos of different sizes to be instantiated
-- download from: www.fpga.com.cn & www.pld.c
www.eeworm.com/read/433021/8551999
vhd fifo存储器.vhd
--A First-in First-out Memory
--a first-in first out memory, uses a synchronising clock
--generics allow fifos of different sizes to be instantiated
library IEEE;
use IEEE.Std_logic_1164.all;
entity F
www.eeworm.com/read/179673/9345365
txt fifo存储器举例:(注3).txt
-- A First-in First-out Memory
-- a first-in first out memory, uses a synchronising clock
-- generics allow fifos of different sizes to be instantiated
-- download from: www.fpga.com.cn & www.pld.c
www.eeworm.com/read/179665/9345656
txt fifo存储器举例:(注3).txt
-- A First-in First-out Memory
-- a first-in first out memory, uses a synchronising clock
-- generics allow fifos of different sizes to be instantiated
-- download from: www.fpga.com.cn & www.pld.c
www.eeworm.com/read/373369/9461069
java genericarray2.java
//: generics/GenericArray2.java
public class GenericArray2 {
private Object[] array;
public GenericArray2(int sz) {
array = new Object[sz];
}
public void put(int index, T item)
www.eeworm.com/read/373369/9461109
java tupletest2.java
//: generics/TupleTest2.java
import net.mindview.util.*;
import static net.mindview.util.Tuple.*;
public class TupleTest2 {
static TwoTuple f() {
return tuple("hi", 47);
www.eeworm.com/read/373369/9461249
java apply.java
//: generics/Apply.java
// {main: ApplyTest}
import java.lang.reflect.*;
import java.util.*;
import static net.mindview.util.Print.*;
public class Apply {
public static
www.eeworm.com/read/373369/9461256
java factoryconstraint.java
//: generics/FactoryConstraint.java
interface FactoryI {
T create();
}
class Foo2 {
private T x;
public Foo2(F factory) {
x = factory.create();
}