Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.Collection;

public class Main {
    public static int count(Collection<?> c, Object o) {
        int count = 0;
        if (c != null && o != null) {
            for (Object element : c) {
                if (o.equals(element))
                    count++;
            }
        }
        return count;
    }
}