DiskManager.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.command_name.os;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class DiskManager {
  7. //默认的计算大小
  8. public static String df(){
  9. return "/t10485760n/usrt104857600n/homet1048576000n";
  10. }
  11. //按照kb来计算
  12. public static String df_k(){
  13. return "/t10240n/usrt102400n/homett10240000n";
  14. }
  15. //按照gb计算
  16. public static String df_g(){
  17. return "/t10n/usrt100n/homett10000n";
  18. }
  19. public static void main(String[] args) {
  20. System.out.println(df());
  21. }
  22. }