package com.example; /** * 介绍:src类: 我们有的220V电压 * 作者:zhangxutong * 邮箱:zhangxutong@imcoming.com * 时间: 2016/10/18. */ public class Voltage220 { public int output220V() { int src = 220; System.out.println("我是" + src + "V"); return src; } }