07.重写ToSting()方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了07.重写ToSting()方法相关的知识,希望对你有一定的参考价值。

  1. namespace _08.重写ToString方法
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. Person p = new Person();
  8. string str=p.ToString();
  9. Console.WriteLine(str);
  10. Console.ReadKey();
  11. }
  12. }
  13. public class Person:object
  14. {
  15. public override string ToString() //重写Object类的ToString()方法
  16. {
  17. return "ToString方法被复写了";
  18. }
  19. }
  20. }





以上是关于07.重写ToSting()方法的主要内容,如果未能解决你的问题,请参考以下文章

Java连载56-toSting方法和equals方法

java char[]转string 使用new String(char[])不能使用toSting()

如何重载单个变量的TOSTRING方法 C#中

c# 基础 object ,new操作符,类型转换

odoo 怎么重写模块默认方法

推进学说代码片段