单项选择题

假设有String a="A";char b='A';int c=65,正确的选项是______。

A) if(a==b)System.out.print("Equal");
B) if(c==b)System.out.print("Equal");
C) if(a==c)System.out.print("Equal");
D) 以上均不正确