beingWH's recent timeline updates
beingWH

beingWH

V2EX member #366033, joined on 2018-11-27 10:42:28 +08:00
beingWH's recent replies
Feb 7, 2021
Replied to a topic by Qute 问与答 想换个城市,能否给个推荐
廈門
Dec 18, 2020
Replied to a topic by whatever93 生活 请问大家:夫妻一起存的钱,放在哪里?
怎么管要看你和你老婆的性格和相处模式,不是千遍一律可以套的。
如果你老婆是贤妻良母型的,你们相处上没有大毛病,大可都给她管好了。
如果你老婆是来事儿型的,花钱大手大脚,你们常吵架,从某个角度讲,你需要建立一种威慑力,巩固家庭。靠斗争谋和平,钱就是威慑力,这种情况你就要多挣钱,掌握财产。
告诉你,最差的家庭模式就是,女的没用还牛比,男的挣不了钱很懦弱。
Dec 14, 2020
Replied to a topic by pianjiao 生活 带娃真的是太崩溃了
带一个小孩也叫辛苦吗?我家一对双胞胎,就羡慕你们这种生一个的。
210W 首付 30% 28 年 24 年
385W 首付 30% 30 年 28 年
Sep 28, 2020
Replied to a topic by biangou 程序员 有没有大佬给点人生建议,最近很迷茫
该吃吃该喝喝,你在世界上也就几十年。
Sep 24, 2020
Replied to a topic by LittleDust 程序员 在座的各位,有是自由程序员的吗?
面向二胎的编程
@lscexpress 十岁的时候我雇了一个混子 PHP 程序员给我写代码,一个月随便给他几千块,转手就是几万卖出去。
惨,我十岁的时候就月入两万了
```
interface ICalc
{
float GetAera();
}

class Circle : ICalc
{
public float Radius { get; set; }

public float GetAera()
{
return Math.PI * Radius * Radius;
}
}

class Rectangle : ICalc
{
public float Length { get; set; }
public float Width { get; set; }

public float GetAera()
{
return Length * Width;
}
}

class Triangle : ICalc
{
public float Bottom { get; set; }
public float Height { get; set; }

public float GetAera()
{
return Bottom * Height * 0.5;
}
}

static class ShapeCalculator
{
public static float CalculateTotalArea(this List<ICalc> shapes)
{
float totalArea = 0;
if (shapes != null)
{
totalArea = shapes.Sum(shape => shape.GetAera());
}
return totalArea;
}
}
```
感觉问题不大。
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   4873 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 27ms · UTC 09:45 · PVG 17:45 · LAX 02:45 · JFK 05:45
♥ Do have faith in what you're doing.